summaryrefslogtreecommitdiffstats
path: root/src/GroupManager.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-08-21 15:29:54 +0200
committerMattes D <github@xoft.cz>2014-08-21 15:29:54 +0200
commit8acc8831879582e24c53c18d0442db0b1df6c6b6 (patch)
treea1d8777a198b64d791c47288c3ed651bb638e0bf /src/GroupManager.h
parentcMojangAPI: Fixed MakeUUID___() bindings. (diff)
downloadcuberite-8acc8831879582e24c53c18d0442db0b1df6c6b6.tar
cuberite-8acc8831879582e24c53c18d0442db0b1df6c6b6.tar.gz
cuberite-8acc8831879582e24c53c18d0442db0b1df6c6b6.tar.bz2
cuberite-8acc8831879582e24c53c18d0442db0b1df6c6b6.tar.lz
cuberite-8acc8831879582e24c53c18d0442db0b1df6c6b6.tar.xz
cuberite-8acc8831879582e24c53c18d0442db0b1df6c6b6.tar.zst
cuberite-8acc8831879582e24c53c18d0442db0b1df6c6b6.zip
Diffstat (limited to 'src/GroupManager.h')
-rw-r--r--src/GroupManager.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/GroupManager.h b/src/GroupManager.h
deleted file mode 100644
index d42b55c4a..000000000
--- a/src/GroupManager.h
+++ /dev/null
@@ -1,36 +0,0 @@
-
-#pragma once
-
-
-
-
-
-class cGroup;
-
-
-
-
-
-class cGroupManager
-{
-public:
- bool ExistsGroup(const AString & a_Name);
- cGroup * GetGroup(const AString & a_Name);
- bool LoadGroups();
- bool CheckUsers();
-
- /** Writes the default header to the specified ini file, and saves it as "users.ini". */
- static void GenerateDefaultUsersIni(cIniFile & a_IniFile);
-
-private:
- friend class cRoot;
- cGroupManager();
- ~cGroupManager();
-
- struct sGroupManagerState;
- sGroupManagerState * m_pState;
-} ;
-
-
-
-