diff options
author | Mattes D <github@xoft.cz> | 2014-02-05 19:58:02 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-02-05 19:58:02 +0100 |
commit | 694fa5d54188012a4fa727bbbe82ff92ca289d79 (patch) | |
tree | fcd2ccb8b83f34ff032fa35171e494e7bfd65b85 /src/Group.cpp | |
parent | Merge pull request #647 from worktycho/runMCServer (diff) | |
parent | Forgot extra lines. (diff) | |
download | cuberite-694fa5d54188012a4fa727bbbe82ff92ca289d79.tar cuberite-694fa5d54188012a4fa727bbbe82ff92ca289d79.tar.gz cuberite-694fa5d54188012a4fa727bbbe82ff92ca289d79.tar.bz2 cuberite-694fa5d54188012a4fa727bbbe82ff92ca289d79.tar.lz cuberite-694fa5d54188012a4fa727bbbe82ff92ca289d79.tar.xz cuberite-694fa5d54188012a4fa727bbbe82ff92ca289d79.tar.zst cuberite-694fa5d54188012a4fa727bbbe82ff92ca289d79.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 |