diff options
author | Mattes D <github@xoft.cz> | 2014-08-21 15:29:54 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-08-21 15:29:54 +0200 |
commit | 8acc8831879582e24c53c18d0442db0b1df6c6b6 (patch) | |
tree | a1d8777a198b64d791c47288c3ed651bb638e0bf /src/GroupManager.h | |
parent | cMojangAPI: Fixed MakeUUID___() bindings. (diff) | |
download | cuberite-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 '')
-rw-r--r-- | src/GroupManager.h | 36 |
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; -} ; - - - - |