diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-09 03:03:12 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-09 03:03:12 +0000 |
commit | d35316711894c64f781d923a88243da5757cc2ab (patch) | |
tree | 7f1d8545a6806c798fcd41c16878b6319ed61fc0 /include/modules.h | |
parent | b7d84f0b68ec15e80d2b69e63306e85443e24648 (diff) |
Add module.cpp and modulemanager.cpp.
- module.cpp: contains (new/"good") code relating to modules. Crappy/stuff to be replaced will stay in modules.c
- modulemanager.cpp: contains stuff *manipulating* modules.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1611 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/modules.h b/include/modules.h index e18b8f8cb..e421187c8 100644 --- a/include/modules.h +++ b/include/modules.h @@ -132,6 +132,15 @@ struct ModuleLang_ { char **argv; }; +/** Used to manage modules. + */ +CoreExport class ModuleManager +{ + +}; + +/** Every module in Anope is actually a class. + */ CoreExport class Module { public: |