From 61e944f9fd3dc323858cbb5636abd024225aa027 Mon Sep 17 00:00:00 2001 From: w00t Date: Sun, 13 Jan 2008 02:59:06 +0000 Subject: [PATCH] Feh. Remember the header too. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8703 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/usermanager.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 include/usermanager.h 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 -- 2.39.5