mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 21:56:43 +08:00
doxygen
This commit is contained in:
@@ -14,6 +14,11 @@
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
/*!
|
||||
* \def BLACKCORE_EXPORT
|
||||
* BlackCore Export Macro
|
||||
*/
|
||||
|
||||
#ifndef WITH_STATIC
|
||||
# if defined(BUILD_BLACKCORE_LIB)
|
||||
# define BLACKCORE_EXPORT Q_DECL_EXPORT
|
||||
|
||||
@@ -14,6 +14,11 @@
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
/*!
|
||||
* \def BLACKGUI_EXPORT
|
||||
* BlackGui Export Macro
|
||||
*/
|
||||
|
||||
#ifndef WITH_STATIC
|
||||
# if defined(BUILD_BLACKGUI_LIB)
|
||||
# define BLACKGUI_EXPORT Q_DECL_EXPORT
|
||||
|
||||
@@ -14,6 +14,11 @@
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
/*!
|
||||
* \def BLACKINPUT_EXPORT
|
||||
* BlackInput Export Macro
|
||||
*/
|
||||
|
||||
#ifndef WITH_STATIC
|
||||
# if defined(BUILD_BLACKINPUT_LIB)
|
||||
# define BLACKINPUT_EXPORT Q_DECL_EXPORT
|
||||
|
||||
@@ -108,12 +108,14 @@ namespace BlackMisc
|
||||
CONTAINER &container();
|
||||
};
|
||||
|
||||
//! \cond PRIVATE
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ICallsignObjectList<BlackMisc::Aviation::CAtcStation, BlackMisc::Aviation::CAtcStationList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ICallsignObjectList<BlackMisc::Aviation::CAircraft, BlackMisc::Aviation::CAircraftList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ICallsignObjectList<BlackMisc::Aviation::CAircraftSituation, BlackMisc::Aviation::CAircraftSituationList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ICallsignObjectList<BlackMisc::Aviation::CAircraftParts, BlackMisc::Aviation::CAircraftPartsList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ICallsignObjectList<BlackMisc::Simulation::CSimulatedAircraft, BlackMisc::Simulation::CSimulatedAircraftList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ICallsignObjectList<BlackMisc::Network::CClient, BlackMisc::Network::CClientList>;
|
||||
//! \endcond
|
||||
|
||||
} //namespace
|
||||
} // namespace
|
||||
|
||||
@@ -146,9 +146,11 @@ namespace BlackMisc
|
||||
AVIO *derived();
|
||||
};
|
||||
|
||||
//! \cond PRIVATE
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CModulator<CComSystem>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CModulator<CNavSystem>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CModulator<CAdfSystem>;
|
||||
//! \endcond
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,6 +14,11 @@
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
/*!
|
||||
* \def BLACKMISC_EXPORT
|
||||
* BlackMisc Export Macro
|
||||
*/
|
||||
|
||||
#ifndef WITH_STATIC
|
||||
# if defined(BUILD_BLACKMISC_LIB)
|
||||
# define BLACKMISC_EXPORT Q_DECL_EXPORT
|
||||
@@ -24,6 +29,11 @@
|
||||
# define BLACKMISC_EXPORT
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* \def BLACKMISC_EXPORT_TEMPLATE
|
||||
* BlackMisc Template Export Macro
|
||||
*/
|
||||
|
||||
#if defined(Q_OS_WIN) && defined(Q_CC_GNU)
|
||||
# define BLACKMISC_EXPORT_TEMPLATE BLACKMISC_EXPORT
|
||||
#else
|
||||
|
||||
@@ -96,8 +96,10 @@ namespace BlackMisc
|
||||
LATorLON *derived();
|
||||
};
|
||||
|
||||
//! \cond PRIVATE
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CEarthAngle<CLatitude>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CEarthAngle<CLongitude>;
|
||||
//! \endcond
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -61,10 +61,12 @@ namespace BlackMisc
|
||||
CONTAINER &container();
|
||||
};
|
||||
|
||||
//! \cond PRIVATE
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE IGeoObjectList<BlackMisc::Aviation::CAtcStation, BlackMisc::Aviation::CAtcStationList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE IGeoObjectList<BlackMisc::Aviation::CAircraft, BlackMisc::Aviation::CAircraftList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE IGeoObjectList<BlackMisc::Aviation::CAirport, BlackMisc::Aviation::CAirportList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE IGeoObjectList<BlackMisc::Simulation::CSimulatedAircraft, BlackMisc::Simulation::CSimulatedAircraftList>;
|
||||
//! \endcond
|
||||
|
||||
//! List of objects with geo coordinates.
|
||||
template<class OBJ, class CONTAINER>
|
||||
@@ -92,10 +94,12 @@ namespace BlackMisc
|
||||
|
||||
};
|
||||
|
||||
//! \cond PRIVATE
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE IGeoObjectWithRelativePositionList<BlackMisc::Aviation::CAtcStation, BlackMisc::Aviation::CAtcStationList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE IGeoObjectWithRelativePositionList<BlackMisc::Aviation::CAircraft, BlackMisc::Aviation::CAircraftList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE IGeoObjectWithRelativePositionList<BlackMisc::Aviation::CAirport, BlackMisc::Aviation::CAirportList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE IGeoObjectWithRelativePositionList<BlackMisc::Simulation::CSimulatedAircraft, BlackMisc::Simulation::CSimulatedAircraftList>;
|
||||
//! \endcond
|
||||
|
||||
} //namespace
|
||||
} // namespace
|
||||
|
||||
@@ -251,6 +251,7 @@ namespace BlackMisc
|
||||
PQ *derived();
|
||||
};
|
||||
|
||||
//! \cond PRIVATE
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CPhysicalQuantity<CLengthUnit, CLength>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CPhysicalQuantity<CPressureUnit, CPressure>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CPhysicalQuantity<CFrequencyUnit, CFrequency>;
|
||||
@@ -260,6 +261,7 @@ namespace BlackMisc
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CPhysicalQuantity<CAngleUnit, CAngle>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CPhysicalQuantity<CTimeUnit, CTime>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE CPhysicalQuantity<CAccelerationUnit, CAcceleration>;
|
||||
//! \endcond
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -101,10 +101,12 @@ namespace BlackMisc
|
||||
CONTAINER &container();
|
||||
};
|
||||
|
||||
//! \cond PRIVATE
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ITimestampObjectList<BlackMisc::Aviation::CAircraftSituation, BlackMisc::Aviation::CAircraftSituationList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ITimestampObjectList<BlackMisc::Aviation::CAircraftParts, BlackMisc::Aviation::CAircraftPartsList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ITimestampObjectList<BlackMisc::Network::CTextMessage, BlackMisc::Network::CTextMessageList>;
|
||||
extern template class BLACKMISC_EXPORT_TEMPLATE ITimestampObjectList<BlackMisc::CStatusMessage, BlackMisc::CStatusMessageList>;
|
||||
//! \endcond
|
||||
|
||||
} //namespace
|
||||
|
||||
|
||||
@@ -14,6 +14,11 @@
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
/*!
|
||||
* \def BLACKSOUND_EXPORT
|
||||
* BlackSound Export Macro
|
||||
*/
|
||||
|
||||
#ifndef WITH_STATIC
|
||||
# if defined(BUILD_BLACKSOUND_LIB)
|
||||
# define BLACKSOUND_EXPORT Q_DECL_EXPORT
|
||||
|
||||
Reference in New Issue
Block a user