Sowl  1.0
Simple Object Window Library
SolidBrush.h
1 #pragma once
2 #include "Brush.h"
3 
4 namespace sowl
5 {
6  class SolidBrush : public Brush
7  {
8  public:
9  SolidBrush(COLORREF color);
10  ~SolidBrush();
11  };
12 }
Definition: Brush.h:6
Definition: SolidBrush.h:6