1
0
Fork 0

Add a reinit() stub for subsystems, so that they can be reinitialized

when needed (say, to reload the configuration files).
This commit is contained in:
david 2002-12-15 14:58:08 +00:00
parent 0e69acaff7
commit 8e7dfbe292
2 changed files with 14 additions and 0 deletions

View file

@ -26,6 +26,11 @@ FGSubsystem::init ()
{
}
void
FGSubsystem::reinit ()
{
}
void
FGSubsystem::bind ()
{

View file

@ -148,6 +148,15 @@ public:
virtual void init ();
/**
* Reinitialize the subsystem.
*
* <p>This method should cause the subsystem to reinitialize itself,
* and (normally) to reload any configuration files.</p>
*/
virtual void reinit ();
/**
* Acquire the subsystem's property bindings.
*