Sleeping Wombat GUI  0.100
swGUI
IPanel.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 
6 
7 namespace sw {
8 namespace gui
9 {
10 
12 class IPanel : public IControl
13 {
14  RTTR_ENABLE( IControl )
15  RTTR_REGISTRATION_FRIEND
16 private:
17 protected:
18 public:
19  IPanel ( IControl* parent );
20  virtual ~IPanel ();
21 
22 };
23 
24 
25 
26 } // gui
27 } // sw
28 
Definition: IPanel.h:12
Definition: DirectInputModule.cpp:11
Klasa bazowa dla kontrolek.
Definition: IControl.h:47
IPanel(IControl *parent)
Definition: IPanel.cpp:16
virtual ~IPanel()
Definition: IPanel.cpp:20