Files
Work/mdiwin/CRSCTRL.HPP
2024-08-07 09:16:27 -04:00

24 lines
331 B
C++

#ifndef _CURSORCONTROL_HPP_
#define _CURSORCONTROL_HPP_
#include <mdiwin/windows.hpp>
class CursorControl
{
public:
CursorControl();
virtual ~CursorControl();
void waitCursor(int setState);
private:
HCURSOR mhCursor;
};
inline
CursorControl::CursorControl()
: mhCursor(0)
{
}
inline
CursorControl::~CursorControl()
{
}
#endif