|
From: Carlo W. <li...@us...> - 2001-12-29 23:59:26
|
CVSROOT : /cvsroot/libcw
Module : src
Commit time: 2001-11-29 23:59:25 UTC
Added files:
libcwd/documentation/tutorial/examples5/sysinclude/libbooster/debug.h
libcwd/documentation/tutorial/examples5/sysinclude/libturbo/debug.h
Log message:
Work in progress.
---------------------- diff included ----------------------
Index: src/libcwd/documentation/tutorial/examples5/sysinclude/libbooster/debug.h
diff -u /dev/null src/libcwd/documentation/tutorial/examples5/sysinclude/libbooster/debug.h:1.2
--- /dev/null Sat Dec 29 15:59:25 2001
+++ src/libcwd/documentation/tutorial/examples5/sysinclude/libbooster/debug.h Sat Dec 29 15:59:14 2001
@@ -0,0 +1,14 @@
+#include <libcw/debug.h>
+
+namespace booster {
+ namespace debug {
+ namespace channels {
+ namespace dc {
+ using namespace libcw::debug;
+ using namespace libcw::debug::channels::dc;
+ extern channel_ct booster;
+ extern channel_ct foobar;
+ }
+ }
+ }
+}
Index: src/libcwd/documentation/tutorial/examples5/sysinclude/libturbo/debug.h
diff -u /dev/null src/libcwd/documentation/tutorial/examples5/sysinclude/libturbo/debug.h:1.2
--- /dev/null Sat Dec 29 15:59:25 2001
+++ src/libcwd/documentation/tutorial/examples5/sysinclude/libturbo/debug.h Sat Dec 29 15:59:14 2001
@@ -0,0 +1,20 @@
+#include <libcw/debug.h>
+
+namespace turbo {
+ namespace debug {
+ namespace channels {
+ namespace dc {
+ using namespace libcw::debug;
+ using namespace libcw::debug::channels::dc;
+ extern channel_ct turbo;
+ extern channel_ct foobar;
+ }
+ }
+ }
+}
+
+namespace libcw {
+ namespace debug {
+ using namespace turbo::debug;
+ }
+}
----------------------- End of diff -----------------------
|