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, 0 insertions, 32 deletions
diff --git a/CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp b/CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp
deleted file mode 100644
index f244249c69b..00000000000
--- a/CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-// 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;
-
-}