SGSubsystem classes: Registration of all subsystems added since mid 2018.
This commit is contained in:
parent
ec52a4ee7b
commit
ad33e50324
3 changed files with 13 additions and 0 deletions
|
@ -668,3 +668,7 @@ void Highlight::addPropertyProperty(const std::string& from0, const std::string&
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Register the subsystem.
|
||||||
|
SGSubsystemMgr::Registrant<Highlight> registrantHighlight(
|
||||||
|
SGSubsystemMgr::INIT);
|
||||||
|
|
|
@ -942,3 +942,7 @@ std::string ErrorReporter::threadSpecificContextValue(const std::string& key)
|
||||||
|
|
||||||
|
|
||||||
} // namespace flightgear
|
} // namespace flightgear
|
||||||
|
|
||||||
|
// Register the subsystem.
|
||||||
|
SGSubsystemMgr::Registrant<flightgear::ErrorReporter> registrantErrorReporter(
|
||||||
|
SGSubsystemMgr::GENERAL);
|
||||||
|
|
|
@ -547,4 +547,9 @@ bool GraphicsPresets::saveToXML(const SGPath& path, const std::string& name, con
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Register the subsystem.
|
||||||
|
SGSubsystemMgr::Registrant<GraphicsPresets> registrantGraphicsPresets(
|
||||||
|
SGSubsystemMgr::DISPLAY);
|
||||||
|
|
||||||
|
|
||||||
} // namespace flightgear
|
} // namespace flightgear
|
||||||
|
|
Loading…
Reference in a new issue