Talk:FGPythonSys: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
 
No edit summary
Line 5: Line 5:
* addcommand()/removecomand()
* addcommand()/removecomand()
* run fgcommand (with locking, e.g. using SGMutex)
* run fgcommand (with locking, e.g. using SGMutex)
<syntaxhighlight lang="cpp">
class FGScriptingSystem : public SGSubsystem {
public:
protected:
private:
};
</syntaxhighlight>

Revision as of 15:33, 2 February 2016

FGNasalSys vs FGPythonSys - common baseclass

  • loadModule()
  • loadPropertyScripts()
  • addcommand()/removecomand()
  • run fgcommand (with locking, e.g. using SGMutex)


class FGScriptingSystem : public SGSubsystem {
public:
protected:
private:

};