refs #748 Move CAirportDataReader to the db/ subdirectory

* BlackCore::CAirportDataReader -> BlackCore::Db::CAirportDataReader
* fix typo in CDatabaseReader
This commit is contained in:
Michał Garapich
2016-09-04 22:19:46 +02:00
committed by Mathew Sutcliffe
parent 30e3ce2dbf
commit a4b5b28cc1
16 changed files with 258 additions and 211 deletions

View File

@@ -57,7 +57,7 @@ namespace BlackMisc
namespace BlackCore
{
class CApplication;
class CAirportDataReader;
namespace Vatsim
{
class CVatsimBookingReader;
@@ -68,6 +68,7 @@ namespace BlackCore
namespace Db
{
class CAirportDataReader;
class CDatabaseWriter;
class CDatabaseReader;
class CIcaoDataReader;
@@ -390,7 +391,7 @@ namespace BlackCore
Db::CIcaoDataReader *m_icaoDataReader = nullptr;
Db::CModelDataReader *m_modelDataReader = nullptr;
Db::CInfoDataReader *m_infoDataReader = nullptr;
CAirportDataReader *m_airportDataReader = nullptr;
Db::CAirportDataReader *m_airportDataReader = nullptr;
// writing objects directly into DB
Db::CDatabaseWriter *m_databaseWriter = nullptr;