summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticGraph/String.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/SemanticGraph/String.cpp')
-rw-r--r--CIAO/CCF/CCF/IDL2/SemanticGraph/String.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/CIAO/CCF/CCF/IDL2/SemanticGraph/String.cpp b/CIAO/CCF/CCF/IDL2/SemanticGraph/String.cpp
deleted file mode 100644
index 578c87361d4..00000000000
--- a/CIAO/CCF/CCF/IDL2/SemanticGraph/String.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-// file : CCF/IDL2/SemanticGraph/String.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "CCF/IDL2/SemanticGraph/String.hpp"
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticGraph
- {
- using Introspection::TypeInfo;
- using Introspection::Access;
-
- // BoundedString
- //
- //
- namespace
- {
- TypeInfo
- bounded_string_init_ ()
- {
- TypeInfo ti (typeid (BoundedString));
- ti.add_base (
- Access::PUBLIC, true, Specialization::static_type_info ());
- return ti;
- }
-
- TypeInfo bounded_string_ (bounded_string_init_ ());
- }
-
- TypeInfo const& BoundedString::
- static_type_info () { return bounded_string_; }
-
-
- // BoundedWideString
- //
- //
- namespace
- {
- TypeInfo
- bounded_wide_string_init_ ()
- {
- TypeInfo ti (typeid (BoundedWideString));
- ti.add_base (
- Access::PUBLIC, true, Specialization::static_type_info ());
- return ti;
- }
-
- TypeInfo bounded_wide_string_ (bounded_wide_string_init_ ());
- }
-
- TypeInfo const& BoundedWideString::
- static_type_info () { return bounded_wide_string_; }
- }
- }
-}