summaryrefslogtreecommitdiff
path: root/CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp')
-rw-r--r--CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp b/CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp
new file mode 100644
index 00000000000..f244249c69b
--- /dev/null
+++ b/CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp
@@ -0,0 +1,32 @@
+// file : CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp
+// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
+// cvs-id : $Id$
+
+#include "CCF/CodeGenerationKit/IndentationXML.hpp"
+#include "CCF/CodeGenerationKit/IndentationImplanter.hpp"
+
+#include <iostream>
+
+using std::cout;
+using std::endl;
+
+int
+main ()
+{
+ Indentation::Implanter<Indentation::XML> guard (cout);
+
+ cout << "<?xml version=\"1.0\"?>" << endl;
+ cout << "<!DOCTYPE corbacomponent SYSYEM \"corbacomponent.dtd\">" << endl << endl;
+
+ cout << "<atag>whatever</atag>" << endl;
+
+ cout << "<open>" << endl;
+ cout << "<openother>" << endl;
+ cout << "<openother \nlabel=\"<<<<<<<<<>><>\">" << endl;
+ cout << "text" << endl;
+ cout << "<taginitself/>" << endl;
+ cout << "</openother>" << endl;
+ cout << "</openother>" << endl;
+ cout << "</open>" << endl;
+
+}