diff options
Diffstat (limited to 'include/fakeuser.h')
-rw-r--r-- | include/fakeuser.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/include/fakeuser.h b/include/fakeuser.h deleted file mode 100644 index a46971091..000000000 --- a/include/fakeuser.h +++ /dev/null @@ -1,32 +0,0 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ - * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits - * - * This program is free but copyrighted software; see - * the file COPYING for details. - * - * --------------------------------------------------- - */ - -#ifndef __FAKEUSER_H__ -#define __FAKEUSER_H__ - -#include "users.h" - -class CoreExport FakeUser : public User -{ - public: - FakeUser(const std::string &uid) : User(uid) - { - SetFd(FD_FAKEUSER_NUMBER); - } - - virtual const std::string GetFullHost(); - virtual const std::string GetFullRealHost(); - void SetFakeServer(std::string name); -}; - -#endif |