summaryrefslogtreecommitdiff
path: root/src/wrap.cpp
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:43 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:43 +0200
commit312fe18cb5f97143f3600b207e979bc559256b6f (patch)
treede14514b4b4c20adf0eecdcd261ae21839f6a645 /src/wrap.cpp
parentf038883a6e004eb4312ba1e761da06b596e14d3f (diff)
tagging yhttpd-0.7.0yhttpd-0.7.0
Diffstat (limited to 'src/wrap.cpp')
-rwxr-xr-xsrc/wrap.cpp22
1 files changed, 4 insertions, 18 deletions
diff --git a/src/wrap.cpp b/src/wrap.cpp
index 715ce56..81c6679 100755
--- a/src/wrap.cpp
+++ b/src/wrap.cpp
@@ -5,21 +5,11 @@
using namespace std;
-//<<*
-chat* wrap::CHAT;
-#ifdef DATABASE
-data* wrap::DATA;
-#endif
-gcol* wrap::GCOL;
-sman* wrap::SMAN;
-modl* wrap::MODL;
-//*>>
conf* wrap::CONF;
html* wrap::HTML;
-#ifdef LOGGING
logd* wrap::LOGD;
-#endif
+modl* wrap::MODL;
#ifdef NCURSES
ncur* wrap::NCUR;
#endif
@@ -32,15 +22,11 @@ void
wrap::system_message( string s_message )
{
#ifdef NCURSES
- wrap::NCUR->print( s_message );
+ wrap::NCUR->print( s_message );
#endif
#ifdef SERVMSG
-
- cout << s_message << endl;
-#endif
-#ifdef LOGGING
-
- wrap::LOGD->log_simple_line( s_message + "\n" );
+ cout << s_message << endl;
#endif
+ wrap::LOGD->log_simple_line( s_message + "\n" );
}
#endif