Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-01 19:34:47 +0000
committerStijn Buys <ingar@osirion.org>2008-02-01 19:34:47 +0000
commit6c8446cddb37df732fc9e5fc21f98e31968ce634 (patch)
tree25515ae78969e2f0ef216a5cbef8a650b217e8f8 /src/common/console.h
parentf794b9ee52293cefd6ac73fdf0d2a01c5388f057 (diff)
interface cleanup
Diffstat (limited to 'src/common/console.h')
-rw-r--r--src/common/console.h60
1 files changed, 0 insertions, 60 deletions
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 <iostream>
-
-/// 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__
-