summaryrefslogtreecommitdiff
path: root/modules/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp')
-rw-r--r--modules/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp b/modules/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp
new file mode 100644
index 00000000000..ce0c5eb103c
--- /dev/null
+++ b/modules/CIAO/CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp
@@ -0,0 +1,25 @@
+// 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 ();"
+ << "};";
+}