1 // Windows/Control/Static.h
2 
3 #ifndef __WINDOWS_CONTROL_STATIC_H
4 #define __WINDOWS_CONTROL_STATIC_H
5 
6 #include "Windows/Window.h"
7 #include "Windows/Defs.h"
8 
9 typedef void * HICON;
10 
11 namespace NWindows {
12 namespace NControl {
13 
14 class CStatic : public CWindow
15 {
16 public:
17 
SetIcon(HICON icon)18 	HICON SetIcon(HICON icon) { return 0; } // FIXME
19 };
20 
21 }}
22 
23 #endif
24