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.cpp34
1 files changed, 0 insertions, 34 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 65a7f32f94b..00000000000
--- a/CIAO/CCF/Example/CodeGenerationKit/Indentation/XML/indent_xml.cpp
+++ /dev/null
@@ -1,34 +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;
-
-//FUZZ: disable check_for_improper_main_declaration
-
-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;
-
-}