summaryrefslogtreecommitdiffstats
path: root/src/Group.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-08-26 14:23:21 +0200
committerMattes D <github@xoft.cz>2014-08-26 14:23:21 +0200
commitbe32c0527cd6c69289217999927c3308d8169465 (patch)
tree2b106aeae7032205c8bc1abf06c9e7f646021af9 /src/Group.cpp
parentType warning fixes. (diff)
parentRankMgr: Exported the default-rank functions. (diff)
downloadcuberite-be32c0527cd6c69289217999927c3308d8169465.tar
cuberite-be32c0527cd6c69289217999927c3308d8169465.tar.gz
cuberite-be32c0527cd6c69289217999927c3308d8169465.tar.bz2
cuberite-be32c0527cd6c69289217999927c3308d8169465.tar.lz
cuberite-be32c0527cd6c69289217999927c3308d8169465.tar.xz
cuberite-be32c0527cd6c69289217999927c3308d8169465.tar.zst
cuberite-be32c0527cd6c69289217999927c3308d8169465.zip
Diffstat (limited to '')
-rw-r--r--src/Group.cpp41
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();
-}