diff options
author | Adam <Adam@anope.org> | 2011-09-02 15:28:16 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-09-10 02:05:03 -0400 |
commit | 17ea4ed8f5c4b08668223897c6de87dd3bdd598c (patch) | |
tree | a32cf0bde18678d9ad8895f3e032cf69c48d13f2 /modules/commands/os_session.h | |
parent | feaef7cc4aa97a0851ad404fc76652560bb14a70 (diff) |
Fixed service_reference to work correctly with external classes
Diffstat (limited to 'modules/commands/os_session.h')
-rw-r--r-- | modules/commands/os_session.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/os_session.h b/modules/commands/os_session.h index e47fb3c51..d406a7154 100644 --- a/modules/commands/os_session.h +++ b/modules/commands/os_session.h @@ -1,13 +1,13 @@ #ifndef OS_SESSION_H #define OS_SESSION_H -class SessionService : public Service<SessionService> +class SessionService : public Service<Base> { public: typedef Anope::map<Session *> SessionMap; typedef std::vector<Exception *> ExceptionVector; - SessionService(Module *m) : Service<SessionService>(m, "session") { } + SessionService(Module *m) : Service<Base>(m, "session") { } virtual void AddException(Exception *e) = 0; |