summaryrefslogtreecommitdiffstats
path: root/src/ui/group.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/group.h')
-rw-r--r--src/ui/group.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/ui/group.h b/src/ui/group.h
index baf609f..bfeef74 100644
--- a/src/ui/group.h
+++ b/src/ui/group.h
@@ -21,18 +21,20 @@
#include "ui/control.h"
+namespace Gfx{
+class CEngine;
+};
-class CD3DEngine;
-
-
+namespace Ui {
class CGroup : public CControl
{
public:
- CGroup(CInstanceManager* iMan);
+// CGroup(CInstanceManager* iMan);
+ CGroup();
virtual ~CGroup();
- bool Create(Math::Point pos, Math::Point dim, int icon, EventMsg eventMsg);
+ bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventType);
bool EventProcess(const Event &event);
@@ -44,3 +46,4 @@ protected:
};
+}