#ifndef _CURSORCONTROL_HPP_ #define _CURSORCONTROL_HPP_ #include class CursorControl { public: CursorControl(); virtual ~CursorControl(); void waitCursor(int setState); private: HCURSOR mhCursor; }; inline CursorControl::CursorControl() : mhCursor(0) { } inline CursorControl::~CursorControl() { } #endif