diff options
| author | 2007-06-17 13:10:53 +0000 | |
|---|---|---|
| committer | 2007-06-17 13:10:53 +0000 | |
| commit | 69ffa8d85f9f709b72ad3c4489b7c93f7ec14a9a (patch) | |
| tree | fab9b4002161b05e843967337b651e15c78710ae /src/modules/m_watch.cpp | |
| parent | First two conversions (diff) | |
More
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7343 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_watch.cpp')
| -rw-r--r-- | src/modules/m_watch.cpp | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp index ca51fc690..5eda2d0e2 100644 --- a/src/modules/m_watch.cpp +++ b/src/modules/m_watch.cpp @@ -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); |
