diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-02-05 20:08:10 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-02-05 20:08:10 +0100 |
commit | 9015e56c604b2ad3ce47ddae8e9556187fe8978e (patch) | |
tree | 60b23762504cfb9eb4cba9758f15c0e5fab46123 /src/Group.cpp | |
parent | Modified automatic test for boundingBox (diff) | |
parent | Merge pull request #645 from mc-server/GroupsPermissions (diff) | |
download | cuberite-9015e56c604b2ad3ce47ddae8e9556187fe8978e.tar cuberite-9015e56c604b2ad3ce47ddae8e9556187fe8978e.tar.gz cuberite-9015e56c604b2ad3ce47ddae8e9556187fe8978e.tar.bz2 cuberite-9015e56c604b2ad3ce47ddae8e9556187fe8978e.tar.lz cuberite-9015e56c604b2ad3ce47ddae8e9556187fe8978e.tar.xz cuberite-9015e56c604b2ad3ce47ddae8e9556187fe8978e.tar.zst cuberite-9015e56c604b2ad3ce47ddae8e9556187fe8978e.zip |
Diffstat (limited to 'src/Group.cpp')
-rw-r--r-- | src/Group.cpp | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/src/Group.cpp b/src/Group.cpp index 448d29d87..cc42c55a1 100644 --- a/src/Group.cpp +++ b/src/Group.cpp @@ -3,19 +3,34 @@ #include "Group.h" -void cGroup::AddCommand( std::string a_Command ) + + + + +void cGroup::AddCommand( AString a_Command ) { m_Commands[ a_Command ] = true; } -void cGroup::AddPermission( std::string a_Permission ) + + + + +void cGroup::AddPermission( AString a_Permission ) { m_Permissions[ a_Permission ] = true; } -bool cGroup::HasCommand( std::string a_Command ) + + + + +bool cGroup::HasCommand( AString a_Command ) { - if( m_Commands.find("*") != m_Commands.end() ) return true; + if( m_Commands.find("*") != m_Commands.end() ) + { + return true; + } CommandMap::iterator itr = m_Commands.find( a_Command ); if( itr != m_Commands.end() ) @@ -34,4 +49,12 @@ void cGroup::InheritFrom( cGroup* a_Group ) { m_Inherits.remove( a_Group ); m_Inherits.push_back( a_Group ); +} + + + + +void cGroup::ClearPermission() +{ + m_Permissions.clear(); }
\ No newline at end of file |