]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_watch.cpp
Convert more modules
[user/henk/code/inspircd.git] / src / modules / m_watch.cpp
index ca51fc690b90a343d1e3c2ae2775c39d147dd4b8..5eda2d0e23c0ef14842916ce8b4b45c629bbc2ed 100644 (file)
@@ -70,7 +70,7 @@ typedef nspace::hash_map<irc::string, std::deque<userrec*>, nspace::hash_compare
 #else
 typedef nspace::hash_map<irc::string, std::deque<userrec*>, nspace::hash<irc::string> > watchentries;
 #endif
-typedef std::map<irc::string, std::string>watchlist;
+typedef std::map<irc::string, std::string> watchlist;
 
 /* Who's watching each nickname.
  * NOTE: We do NOT iterate this to display a user's WATCH list!
@@ -468,28 +468,5 @@ class Modulewatch : public Module
        }
 };
 
-
-class ModulewatchFactory : public ModuleFactory
-{
- public:
-       ModulewatchFactory()
-       {
-       }
-       
-       ~ModulewatchFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(InspIRCd* Me)
-       {
-               return new Modulewatch(Me);
-       }
-       
-};
-
-
-extern "C" DllExport void * init_module( void )
-{
-       return new ModulewatchFactory;
-}
+MODULE_INIT(Modulewatch);