1
0
Fork 0

- added variable support for the saved command state and for the local

argument copy in FGBinding
- removed redundant FGBinding::_fire internal method
- declared copy constructor for FGBinding
This commit is contained in:
curt 2001-06-29 03:47:19 +00:00
parent ce45dbefe0
commit d9bcec2851

View file

@ -61,6 +61,12 @@ public:
FGBinding ();
/**
* Copy constructor.
*/
FGBinding (const FGBinding &binding);
/**
* Convenience constructor.
*
@ -126,10 +132,11 @@ public:
private:
void _fire (const SGPropertyNode *arg) const;
string _command_name;
SGCommandMgr::command_t _command;
const SGPropertyNode * _arg;
mutable SGPropertyNode * _arg;
mutable SGPropertyNode * _setting;
mutable SGCommandState * _command_state;
};