summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CIDLC/parser_examples/idl2/idl2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/CIDLC/parser_examples/idl2/idl2.cpp')
-rw-r--r--TAO/CIAO/CIDLC/parser_examples/idl2/idl2.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/TAO/CIAO/CIDLC/parser_examples/idl2/idl2.cpp b/TAO/CIAO/CIDLC/parser_examples/idl2/idl2.cpp
deleted file mode 100644
index 43471c7358b..00000000000
--- a/TAO/CIAO/CIDLC/parser_examples/idl2/idl2.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// $Id$
-
-#if defined(_DEBUG)
-//#define SPIRIT_DEBUG
-#endif // defined(_DEBUG)
-
-#include "idl2_grammar.h"
-
-int
-main (int argc, char* argv[])
-{
- cerr << "IDL2 Grammar checker implemented with Spirit ..." << endl;
-
-idl2_grammar g;
-
- if (2 == argc)
- {
- parse (g,
- argv[1]);
- }
- else
- {
- cerr << "No filename given" << endl;
- }
-
- return 0;
-}