summaryrefslogtreecommitdiffstats
path: root/src/Group.cpp
diff options
context:
space:
mode:
authorSTRWarrior <niels.breuker@hotmail.nl>2014-02-05 18:10:08 +0100
committerSTRWarrior <niels.breuker@hotmail.nl>2014-02-05 18:10:08 +0100
commit7c750914f0ddd0fec414e8690b10145ed61e7fa9 (patch)
treed8d3ad52e2561af40793357bc638d68b54666c9a /src/Group.cpp
parentNamed the different quartz block. (diff)
downloadcuberite-7c750914f0ddd0fec414e8690b10145ed61e7fa9.tar
cuberite-7c750914f0ddd0fec414e8690b10145ed61e7fa9.tar.gz
cuberite-7c750914f0ddd0fec414e8690b10145ed61e7fa9.tar.bz2
cuberite-7c750914f0ddd0fec414e8690b10145ed61e7fa9.tar.lz
cuberite-7c750914f0ddd0fec414e8690b10145ed61e7fa9.tar.xz
cuberite-7c750914f0ddd0fec414e8690b10145ed61e7fa9.tar.zst
cuberite-7c750914f0ddd0fec414e8690b10145ed61e7fa9.zip
Diffstat (limited to 'src/Group.cpp')
-rw-r--r--src/Group.cpp31
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