1
0
Fork 0

Added constructor for fgEVENT.

This commit is contained in:
curt 1998-09-08 21:41:06 +00:00
parent b318fec021
commit 44a9f9e26a

View file

@ -68,7 +68,8 @@ public:
FG_EVENT_QUEUED = 2 FG_EVENT_QUEUED = 2
}; };
public: fgEVENT(); // Required by deque<>.
fgEVENT( const string& desc, fgEVENT( const string& desc,
const fgCallback& cb, const fgCallback& cb,
EventState _status, EventState _status,
@ -167,6 +168,9 @@ extern fgEVENT_MGR global_events;
// $Log$ // $Log$
// Revision 1.10 1998/09/08 21:41:06 curt
// Added constructor for fgEVENT.
//
// Revision 1.9 1998/09/02 14:37:45 curt // Revision 1.9 1998/09/02 14:37:45 curt
// Renamed struct -> class. // Renamed struct -> class.
// //