summaryrefslogtreecommitdiff
path: root/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp')
-rw-r--r--CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp b/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp
deleted file mode 100644
index ce0c5eb103c..00000000000
--- a/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-// file : CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "CCF/CodeGenerationKit/IndentationIDL.hpp"
-#include "CCF/CodeGenerationKit/IndentationImplanter.hpp"
-
-#include <iostream>
-
-using std::cout;
-using std::endl;
-
-int
-main ()
-{
- Indentation::Implanter<Indentation::IDL> guard (cout);
-
- cout << "const string s = \"Hello \\\"world;\";";
- cout << "const char c1 = \'\\\'\';";
- cout << "const char c2 = \';\';";
-
- cout << "interface I {"
- << "void foo ();"
- << "};";
-}