diff options
-rw-r--r-- | include/usermanager.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/usermanager.h b/include/usermanager.h new file mode 100644 index 000000000..f8337ff8c --- /dev/null +++ b/include/usermanager.h @@ -0,0 +1,28 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#ifndef __USERMANAGER_H +#define __USERMANAGER_H + +class CoreExport UserManager : public classbase +{ + private: + InspIRCd *ServerInstance; + public: + UserManager(InspIRCd *Instance) + { + ServerInstance = Instance; + } +}; + +#endif |