From 6c8446cddb37df732fc9e5fc21f98e31968ce634 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Fri, 1 Feb 2008 19:34:47 +0000 Subject: interface cleanup --- src/common/console.h | 60 ---------------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 src/common/console.h (limited to 'src/common/console.h') diff --git a/src/common/console.h b/src/common/console.h deleted file mode 100644 index 0706f11..0000000 --- a/src/common/console.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - common/console.h - This file is part of the Osirion project and is distributed under - the terms of the GNU General Public License version 2. -*/ - -#ifndef __INCLUDED_COMMON_CONSOLE_H__ -#define __INCLUDED_COMMON_CONSOLE_H__ - -// project headers -#include "common/common.h" - -// C++ headers -#include - -/// global define to send a message to the system console -#define con_print common::Console::instance()->messagestream() -/// global define to send a warning message to the system console -#define con_warn common::Console::instance()->warningstream() - -#ifdef HAVE_DEBUG_MESSAGES -/// global define to send a debug message to the system console -#define con_debug common::Console::instance()->debugstream() -#else -#define con_debug if (0) *(std::ostream*)(0) -#endif - -namespace common { - -/// interface for a console object that writes messages on the screen -class Console { -public: - /// default constructor - Console(); - - /// default destructor - virtual ~Console(); - - /// stream to send normal messages too - virtual std::ostream & messagestream() = 0; - - /// stream to send warning messages too - virtual std::ostream & warningstream() = 0; - - /// stream to send debug messages too - virtual std::ostream & debugstream() = 0; - - /// a pointer to the current console instance - static Console *instance(); - -private: - /// console singleton - static Console *console_instance; -} -; // class Console - -} // namespace common - -#endif // __INCLUDED_COMMON_CONSOLE_H__ - -- cgit v1.2.3