From fef58e6ebe866d232d02956f6c6b2df4d6393f46 Mon Sep 17 00:00:00 2001 From: psychon Date: Sun, 29 Mar 2009 12:12:34 +0000 Subject: [PATCH] Move the iostream stuff and some "using" from main.h into Utils.h git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1449 726aef4b-f618-498e-8847-2d620e286838 --- Utils.h | 3 +++ main.h | 5 ----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Utils.h b/Utils.h index 986acbcf..f140597f 100644 --- a/Utils.h +++ b/Utils.h @@ -17,9 +17,12 @@ #include #include #include +#include using std::map; using std::vector; +using std::cout; +using std::endl; #define DEBUG(f) do { \ if (CUtils::Debug()) { \ diff --git a/main.h b/main.h index 8137f1e3..ef5f5177 100644 --- a/main.h +++ b/main.h @@ -53,9 +53,4 @@ #define MODULECALL(macFUNC, macUSER, macCLIENT, macEXITER) #endif -#include -using std::cout; -using std::cerr; -using std::endl; - #endif // !_MAIN_H