prepare the receive aircraft position updates
This commit is contained in:
@@ -56,3 +56,21 @@ PlugIn::PlugIn() :
|
||||
}
|
||||
|
||||
PlugIn::~PlugIn() noexcept { }
|
||||
|
||||
EuroScopePlugIn::CRadarScreen* PlugIn::OnRadarScreenCreated(const char* displayName, bool needsRadarContent, bool geoReferenced,
|
||||
bool canBeSaved, bool canBeCreated) {
|
||||
std::ignore = needsRadarContent;
|
||||
std::ignore = geoReferenced;
|
||||
std::ignore = canBeSaved;
|
||||
std::ignore = canBeCreated;
|
||||
std::ignore = displayName;
|
||||
|
||||
if (nullptr == this->m_screen)
|
||||
this->m_screen = std::make_shared<RadarScreen>();
|
||||
|
||||
return this->m_screen.get();
|
||||
}
|
||||
|
||||
void PlugIn::OnRadarTargetPositionUpdate(EuroScopePlugIn::CRadarTarget radarTarget) {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user