24 lines
331 B
C++
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 |