summaryrefslogtreecommitdiff
path: root/src/modl.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
commit5b7605790328c6c0f473296df444d0f4a79ac779 (patch)
tree48b545ac0295c69fb02247d4ad780be311642462 /src/modl.h
parentd3982ec72b255876db00825605d1d5aae0bc313e (diff)
tagging ychat-0.7.6ychat-0.7.6
Diffstat (limited to 'src/modl.h')
-rwxr-xr-xsrc/modl.h29
1 files changed, 14 insertions, 15 deletions
diff --git a/src/modl.h b/src/modl.h
index 983bdda..716944b 100755
--- a/src/modl.h
+++ b/src/modl.h
@@ -10,29 +10,28 @@ using namespace std;
class modl : private shashmap<dynmod*>
{
private:
- static void dlclose_( dynmod* mod );
- dynmod* cache_module ( string s_name, bool b_print_sys_msg );
- void preload_modules( string s_path );
+ static void dlclose_( dynmod* mod );
+ dynmod* cache_module ( string s_name, bool b_print_sys_msg );
+ void preload_modules( string s_path );
#ifdef NCURSES
-
- void print_cached( int i_mods );
+ void print_cached( int i_mods );
#endif
public:
- modl();
- ~modl();
+ modl();
+ ~modl();
- dynmod* get_module( string s_name );
+ dynmod* get_module( string s_name );
- vector<string>* get_mod_vector()
- {
- vector<string>* p_ret = get_key_vector();
- return p_ret;
- }
+ vector<string>* get_mod_vector()
+ {
+ vector<string>* p_ret = get_key_vector();
+ return p_ret;
+ }
- void unload_modules();
- void reload_modules();
+ void unload_modules();
+ void reload_modules();
};
#endif