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.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/examples/APG/Logging/Trace_Return.cpp b/examples/APG/Logging/Trace_Return.cpp
deleted file mode 100644
index 1bb32a03456..00000000000
--- a/examples/APG/Logging/Trace_Return.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-// $Id$
-
-#include "Trace.h"
-
-#if defined (__GNUC__) && (__GNUC__ >= 3 || __GNUC_MINOR__ > 95) && \
- (!defined (VXWORKS) || !(__GNUC__ == 2 && __GNUC_MINOR__ == 96))
-// The DEBUG stuff only works with g++ 2.96 and later.
-// But not with VxWorks g++ 2.96.
-
-// Listing 1 code/ch03
-void foo (void);
-
-int ACE_TMAIN (int, ACE_TCHAR *[])
-{
- TRACE ("main");
-
- MY_DEBUG (ACE_TEXT ("Hi Mom\n"));
- foo ();
- MY_DEBUG (ACE_TEXT ("Goodnight\n"));
-
- TRACE_RETURN (0);
-}
-
-void foo (void)
-{
- TRACE ("foo");
- MY_DEBUG (ACE_TEXT ("Howdy Pardner\n"));
- TRACE_RETURN_VOID ();
-}
-// Listing 1
-
-#else
-#include <stdio.h>
-
-int ACE_TMAIN (int, ACE_TCHAR *[])
-{
- puts ("This example only works on g++ 2.96 and later.\n");
- return 0;
-}
-
-#endif /* __GNUC__ */