// -- Worker.h #ifndef SAW_CORRELATION_WORKER #define SAW_CORRELATION_WORKER #include class Worker { public: // Construction Worker() {}; virtual ~Worker() {} // Operations static void act(); private: // Data CRITICAL_SECTION m_criticalSection; }; #endif