diff options
Diffstat (limited to 'src/account.cpp')
-rw-r--r-- | src/account.cpp | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/account.cpp b/src/account.cpp deleted file mode 100644 index b33646bbe..000000000 --- a/src/account.cpp +++ /dev/null @@ -1,34 +0,0 @@ -#include "services.h"
-
-NickCore::NickCore()
-{
- next = prev = NULL;
- display = email = greet = url = NULL;
- ot = NULL;
- pass[0] = '\0';
- icq = flags = 0;
- language = accesscount = channelcount = 0;
- lastmail = 0;
-}
-
-bool NickCore::HasCommand(const std::string &cmdstr)
-{
- if (!this->ot)
- {
- // No opertype.
- return false;
- }
-
- return this->ot->HasCommand(cmdstr);
-}
-
-bool NickCore::HasPriv(const std::string &privstr)
-{
- if (!this->ot)
- {
- // No opertype.
- return false;
- }
-
- return this->ot->HasPriv(privstr);
-}
|