refs #921, distribution value object/object list

* registration
* property index
This commit is contained in:
Klaus Basan
2017-03-27 23:11:14 +02:00
committed by Mathew Sutcliffe
parent e787d50e47
commit 5ce704c963
11 changed files with 572 additions and 2 deletions

View File

@@ -53,6 +53,9 @@ namespace BlackMisc
//! Set all timestamps to now
void setCurrentUtcTime();
//! Set all timestamps to given time
void setUtcTime(qint64 msSinceEpoch);
//! Set invalid timestamps to now
void setInvalidTimestampsToCurrentUtcTime();
@@ -130,6 +133,8 @@ namespace BlackMisc
{
class CDbInfo;
class CDbInfoList;
class CDistribution;
class CDistributionList;
}
namespace Simulation
@@ -154,6 +159,7 @@ namespace BlackMisc
extern template class BLACKMISC_EXPORT_DECLARE_TEMPLATE ITimestampObjectList<BlackMisc::Aviation::CAirlineIcaoCode, BlackMisc::Aviation::CAirlineIcaoCodeList>;
extern template class BLACKMISC_EXPORT_DECLARE_TEMPLATE ITimestampObjectList<BlackMisc::Aviation::CAirport, BlackMisc::Aviation::CAirportList>;
extern template class BLACKMISC_EXPORT_DECLARE_TEMPLATE ITimestampObjectList<BlackMisc::Db::CDbInfo, BlackMisc::Db::CDbInfoList>;
extern template class BLACKMISC_EXPORT_DECLARE_TEMPLATE ITimestampObjectList<BlackMisc::Db::CDistribution, BlackMisc::Db::CDistributionList>;
extern template class BLACKMISC_EXPORT_DECLARE_TEMPLATE ITimestampObjectList<BlackMisc::Simulation::CAircraftModel, BlackMisc::Simulation::CAircraftModelList>;
extern template class BLACKMISC_EXPORT_DECLARE_TEMPLATE ITimestampObjectList<BlackMisc::Simulation::CDistributor, BlackMisc::Simulation::CDistributorList>;
extern template class BLACKMISC_EXPORT_DECLARE_TEMPLATE ITimestampObjectList<BlackMisc::Network::CTextMessage, BlackMisc::Network::CTextMessageList>;