summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.hpp')
-rw-r--r--CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.hpp56
1 files changed, 0 insertions, 56 deletions
diff --git a/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.hpp b/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.hpp
deleted file mode 100644
index b2a350027db..00000000000
--- a/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.hpp
+++ /dev/null
@@ -1,56 +0,0 @@
-// file : CCF/IDL2/SemanticGraph/Literals.hpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef CCF_IDL2_SEMANTIC_GRAPH_LITERALS_HPP
-#define CCF_IDL2_SEMANTIC_GRAPH_LITERALS_HPP
-
-#include <string>
-#include <iosfwd>
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticGraph
- {
- //
- //
- //
- class StringLiteral
- {
- public:
- StringLiteral (std::string const& literal)
- : literal_ (literal)
- {
- }
-
- std::string
- literal () const
- {
- return literal_;
- }
-
- private:
- std::string literal_;
- };
-
- inline bool
- operator== (StringLiteral const& a, StringLiteral const& b)
- {
- return a.literal () == b.literal ();
- }
-
- inline bool
- operator!= (StringLiteral const& a, StringLiteral const& b)
- {
- return a.literal () != b.literal ();
- }
- }
- }
-}
-
-std::ostream&
-operator<< (std::ostream&, CCF::IDL2::SemanticGraph::StringLiteral const&);
-
-#endif // CCF_IDL2_SEMANTIC_GRAPH_LITERALS_HPP