// SampleEvent.h // // This is part of the principal sample of how to use the ErrorLogger // mechanism in a realistic setting. // // This sample is composed of five files: // SampleFramework // SampleModule // SampleEvent contains the definition of Event, whiich is very // simple here but would be huge in reality. // SampleModuleA // SampleModuleB // #ifndef SAMPLE_EVENT_H #define SAMPLE_EVENT_H class Event { public: int datum; }; // Event #endif // SAMPLE_EVENT_H