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