diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-24 17:02:56 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-24 17:02:56 +0000 |
commit | eff0dafcf0ede888d99fd6dbcd8a4a3705fc23ec (patch) | |
tree | 9fdf2c2ea6e5973cc7bc161fcc0db7c7b2aa5ebe | |
parent | 4b45dc123430e58191d7d71ebd8f46127f99d8fb (diff) |
Missing includes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3906 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_hostchange.cpp | 1 | ||||
-rw-r--r-- | src/modules/m_opermodes.cpp | 1 | ||||
-rw-r--r-- | src/modules/m_vhost.cpp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_hostchange.cpp b/src/modules/m_hostchange.cpp index 21333a853..1dc280266 100644 --- a/src/modules/m_hostchange.cpp +++ b/src/modules/m_hostchange.cpp @@ -20,6 +20,7 @@ using namespace std; #include "users.h" #include "channels.h" #include "modules.h" +#include "inspircd.h" /* $ModDesc: Provides masking of user hostnames in a different way to m_cloaking */ diff --git a/src/modules/m_opermodes.cpp b/src/modules/m_opermodes.cpp index c46b8beaf..4cf360e2a 100644 --- a/src/modules/m_opermodes.cpp +++ b/src/modules/m_opermodes.cpp @@ -19,6 +19,7 @@ using namespace std; #include <stdio.h> #include "users.h" #include "channels.h" +#include "inspircd.h" #include "modules.h" /* $ModDesc: Sets (and unsets) modes on opers when they oper up */ diff --git a/src/modules/m_vhost.cpp b/src/modules/m_vhost.cpp index f419772d4..270d7aa0b 100644 --- a/src/modules/m_vhost.cpp +++ b/src/modules/m_vhost.cpp @@ -20,6 +20,7 @@ using namespace std; #include "users.h" #include "channels.h" #include "modules.h" +#include "inspircd.h" /* $ModDesc: Provides masking of user hostnames via traditional /VHOST command */ |