TWR
T windows api WRapper
 All Classes Functions
TwrCheckbox.h
1 #ifndef TWRCHECKBOX_H
2 #define TWRCHECHBOX_H
3 
4 #include "TwrWnd.h"
5 
6 class TwrCheckbox : public TwrWnd {
7 public:
8  TwrCheckbox();
9  HWND create(void);
10  HWND create(HWND parent);
11  bool isChecked(void);
12  void setChecked(bool checked);
13 };
14 
15 #endif