summaryrefslogtreecommitdiffstats
path: root/source/Group.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-01-12 05:46:01 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-01-12 05:46:01 +0100
commit43e684071933adef93040e8d4b830d5c6b71cf9a (patch)
tree014e5300feb1cdbbb8f24e4e42594eeb841f0be2 /source/Group.h
parentFixed rclk in doublechests (diff)
downloadcuberite-43e684071933adef93040e8d4b830d5c6b71cf9a.tar
cuberite-43e684071933adef93040e8d4b830d5c6b71cf9a.tar.gz
cuberite-43e684071933adef93040e8d4b830d5c6b71cf9a.tar.bz2
cuberite-43e684071933adef93040e8d4b830d5c6b71cf9a.tar.lz
cuberite-43e684071933adef93040e8d4b830d5c6b71cf9a.tar.xz
cuberite-43e684071933adef93040e8d4b830d5c6b71cf9a.tar.zst
cuberite-43e684071933adef93040e8d4b830d5c6b71cf9a.zip
Diffstat (limited to 'source/Group.h')
-rw-r--r--source/Group.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/Group.h b/source/Group.h
index 447802e88..65ee1a60a 100644
--- a/source/Group.h
+++ b/source/Group.h
@@ -5,20 +5,20 @@
-class cGroup //tolua_export
-{ //tolua_export
-public: //tolua_export
+class cGroup // tolua_export
+{ // tolua_export
+public: // tolua_export
cGroup() {}
~cGroup() {}
- void SetName( std::string a_Name ) { m_Name = a_Name; } //tolua_export
- const std::string & GetName() const { return m_Name; } //tolua_export
- void SetColor( std::string a_Color ) { m_Color = a_Color; } //tolua_export
- void AddCommand( std::string a_Command ); //tolua_export
- void AddPermission( std::string a_Permission ); //tolua_export
- void InheritFrom( cGroup* a_Group ); //tolua_export
+ void SetName( std::string a_Name ) { m_Name = a_Name; } // tolua_export
+ const std::string & GetName() const { return m_Name; } // tolua_export
+ void SetColor( std::string a_Color ) { m_Color = a_Color; } // tolua_export
+ void AddCommand( std::string a_Command ); // tolua_export
+ void AddPermission( std::string a_Permission ); // tolua_export
+ void InheritFrom( cGroup* a_Group ); // tolua_export
- bool HasCommand( std::string a_Command ); //tolua_export
+ bool HasCommand( std::string a_Command ); // tolua_export
typedef std::map< std::string, bool > PermissionMap;
const PermissionMap & GetPermissions() const { return m_Permissions; }
@@ -26,7 +26,7 @@ public: //tolua_export
typedef std::map< std::string, bool > CommandMap;
const CommandMap & GetCommands() const { return m_Commands; }
- const AString & GetColor() const { return m_Color; } //tolua_export
+ const AString & GetColor() const { return m_Color; } // tolua_export
typedef std::list< cGroup* > GroupList;
const GroupList & GetInherits() const { return m_Inherits; }
@@ -37,4 +37,4 @@ private:
PermissionMap m_Permissions;
CommandMap m_Commands;
GroupList m_Inherits;
-};//tolua_export \ No newline at end of file
+};// tolua_export