mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-16 18:35:35 +08:00
refs #445, value objects and containers
* common base class for DB based classes * common base class for DB based containers * Livery, distributor value class * adjusted value classes to livery * utility functions for DB values (blackmisc free functions) * register new objects with metadata system
This commit is contained in:
committed by
Mathew Sutcliffe
parent
99b7c52383
commit
25fd0f4f2d
@@ -69,6 +69,9 @@ namespace BlackMisc
|
||||
//! \copydoc CAircraft::setIcaoInfo
|
||||
virtual void setIcaoInfo(const BlackMisc::Aviation::CAircraftIcaoData &icao) override;
|
||||
|
||||
//! \copydoc CAircraft::setLivery
|
||||
virtual void setLivery(const BlackMisc::Aviation::CLivery &livery) override;
|
||||
|
||||
//! \copydoc CAircraft::setPilot
|
||||
virtual void setPilot(const BlackMisc::Network::CUser &user) override;
|
||||
|
||||
@@ -115,8 +118,9 @@ namespace BlackMisc
|
||||
bool m_enabled = true; //!< to be displayed in sim
|
||||
bool m_rendered = false; //!< really shown in simulator
|
||||
bool m_partsSynchronized = false; //!< sync.parts
|
||||
bool m_fastPositionUpdates =false; //!<use fast position updates
|
||||
bool m_fastPositionUpdates = false; //!<use fast position updates
|
||||
|
||||
//! Init, which syncronizes some denormalized values
|
||||
void init();
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user