summaryrefslogtreecommitdiff
path: root/CIAO/CIDLC/UnescapedNamePrinter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CIDLC/UnescapedNamePrinter.hpp')
-rw-r--r--CIAO/CIDLC/UnescapedNamePrinter.hpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/CIAO/CIDLC/UnescapedNamePrinter.hpp b/CIAO/CIDLC/UnescapedNamePrinter.hpp
deleted file mode 100644
index 0b4d31628a4..00000000000
--- a/CIAO/CIDLC/UnescapedNamePrinter.hpp
+++ /dev/null
@@ -1,23 +0,0 @@
-// file : CIDLC/UnescapedNamePrinter.hpp
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// cvs-id : $Id: Collectors.hpp 55138 2004-01-05 07:53:05Z parsons $
-
-#ifndef UNESCAPED_NAME_PRINTER_HPP
-#define UNESCAPED_NAME_PRINTER_HPP
-
-#include "CCF/IDL2/SemanticGraph/Name.hpp"
-
-#include <ostream>
-
-// Prints names in the unescaped form.
-//
-struct UnescapedNamePrinter: CCF::IDL2::SemanticGraph::NamePrinter
-{
- virtual void
- print (std::ostream& os, CCF::IDL2::SemanticGraph::SimpleName const& n)
- {
- os << n.unescaped_str ();
- }
-};
-
-#endif // UNESCAPED_NAME_PRINTER_HPP