summaryrefslogtreecommitdiffstats
path: root/src/GroupManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/GroupManager.h')
-rw-r--r--src/GroupManager.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/GroupManager.h b/src/GroupManager.h
new file mode 100644
index 000000000..d911f976c
--- /dev/null
+++ b/src/GroupManager.h
@@ -0,0 +1,30 @@
+
+#pragma once
+
+
+
+
+
+class cGroup;
+
+
+
+
+
+class cGroupManager
+{
+public:
+ cGroup * GetGroup(const AString & a_Name);
+
+private:
+ friend class cRoot;
+ cGroupManager();
+ ~cGroupManager();
+
+ struct sGroupManagerState;
+ sGroupManagerState * m_pState;
+} ;
+
+
+
+