May 01, 2000
State Machine Design in C++
Listing 1: The EventData class
#ifndef EVENT_DATA_H
#define EVENT_DATA_H
class EventData
{
public:
virtual ~EventData() {};
};
#endif //EVENT_DATA_H
|
|
||||||||||||||||||||||||||||
|
|
|
|