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/Group.cpp | |
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 'src/Group.cpp')
-rw-r--r-- | src/Group.cpp | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/Group.cpp b/src/Group.cpp deleted file mode 100644 index def585618..000000000 --- a/src/Group.cpp +++ /dev/null @@ -1,41 +0,0 @@ - -#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules - -#include "Group.h" - - - - - -void cGroup::AddCommand( const AString & a_Command) -{ - m_Commands[ a_Command ] = true; -} - - - - - -void cGroup::AddPermission( const AString & a_Permission) -{ - m_Permissions[ a_Permission ] = true; -} - - - - - -void cGroup::InheritFrom( cGroup* a_Group) -{ - m_Inherits.remove( a_Group); - m_Inherits.push_back( a_Group); -} - - - - - -void cGroup::ClearPermission() -{ - m_Permissions.clear(); -} |