summaryrefslogtreecommitdiff
path: root/examples/APG/Logging/Trace_Return.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Logging/Trace_Return.cpp')
-rw-r--r--examples/APG/Logging/Trace_Return.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/examples/APG/Logging/Trace_Return.cpp b/examples/APG/Logging/Trace_Return.cpp
deleted file mode 100644
index d466abc43c1..00000000000
--- a/examples/APG/Logging/Trace_Return.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-// $Id$
-
-#if defined (__GNUC__) && (__GNUC__ >= 3 || __GNUC_MINOR__ > 95)
-// The DEBUG stuff only works with g++ 2.96 and later.
-
-// Listing 1 code/ch03
-#include "Trace.h"
-
-void foo (void);
-
-int ACE_TMAIN (int, ACE_TCHAR *[])
-{
- TRACE (ACE_TEXT ("main"));
-
- MY_DEBUG (ACE_TEXT ("Hi Mom\n"));
- foo ();
- MY_DEBUG (ACE_TEXT ("Goodnight\n"));
-
- TRACE_RETURN (0);
-}
-
-void foo (void)
-{
- TRACE (ACE_TEXT ("foo"));
- MY_DEBUG (ACE_TEXT ("Howdy Pardner\n"));
- TRACE_RETURN_VOID ();
-}
-// Listing 1
-
-#else
-#include <stdio.h>
-
-int main (int, char *[])
-{
- puts ("This example only works on g++ 2.96 and later.\n");
- return 0;
-}
-
-#endif /* __GNUC__ */