OSDN Git Service

debug/console_monitor.hpp Add.
authorMyun2 <myun2@nwhite.info>
Thu, 23 Dec 2010 16:21:00 +0000 (01:21 +0900)
committerMyun2 <myun2@nwhite.info>
Thu, 23 Dec 2010 16:21:00 +0000 (01:21 +0900)
roast/include/roast/debug/console_monitor.hpp [new file with mode: 0644]

diff --git a/roast/include/roast/debug/console_monitor.hpp b/roast/include/roast/debug/console_monitor.hpp
new file mode 100644 (file)
index 0000000..fb49956
--- /dev/null
@@ -0,0 +1,29 @@
+//     Roast+ License
+
+/*
+       
+*/
+#ifndef __SFJP_ROAST__debug__console_monitor_HPP__
+#define __SFJP_ROAST__debug__console_monitor_HPP__
+
+#include "roast/console/console.hpp"
+
+namespace roast
+{
+       class debug_console_monitor
+       {
+       public:
+               debug_console_monitor()
+               {
+                       using namespace console;
+
+                       repeat_to_screen_max('*',2);
+                       printf("\n*");
+                       printf("\n*  Roast+ lexical Debugging Monitor\n");
+                       printf("*\n");
+                       repeat_to_screen_max('*',2);
+               }
+       };
+}
+
+#endif//__SFJP_ROAST__debug__console_monitor_HPP__