Sowl  1.0
Simple Object Window Library
Cursor.h
1 #pragma once
2 #include <windows.h>
3 
4 namespace sowl
5 {
6  class Cursor
7  {
8  public:
9  Cursor(HCURSOR handle);
10  HCURSOR GetHandle() const;
11 
12  private:
13  HCURSOR handle;
14  };
15 }
Definition: Cursor.h:6