summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Demux/CodeGen/demux.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Demux/CodeGen/demux.cpp')
-rw-r--r--TAO/performance-tests/Demux/CodeGen/demux.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/TAO/performance-tests/Demux/CodeGen/demux.cpp b/TAO/performance-tests/Demux/CodeGen/demux.cpp
deleted file mode 100644
index abd7e6b0151..00000000000
--- a/TAO/performance-tests/Demux/CodeGen/demux.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-// $Id$
-// ============================================================================
-//
-// = LIBRARY
-// TAO/performance-tests/Demux/CodeGen
-//
-// = FILENAME
-// demux.cpp
-//
-// Main driver program for the code generator
-//
-// = AUTHOR
-//
-// Aniruddha Gokhale
-//
-// ============================================================================
-
-#include "codegen.h"
-
-ACE_RCSID(CodeGen, demux, "$Id$")
-
-int
-main (int argc, char *argv [])
-{
- Demux_Test_CodeGenerator demux_cg;
-
- if (demux_cg.init (argc, argv) == -1)
- {
- ACE_ERROR_RETURN ((LM_ERROR,
- "(%N:%l) Main : cannot initialize the code generator\n"),
- -1);
- }
-
- if (demux_cg.run () == -1)
- {
- ACE_ERROR_RETURN ((LM_ERROR,
- "(%N:%l) Main : cannot invoke the code generator\n"),
- -1);
- }
-
- return 0;
-}