summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp')
-rw-r--r--TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp b/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp
index 578c87361d4..a9d135b2d33 100644
--- a/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp
+++ b/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp
@@ -1,8 +1,8 @@
-// file : CCF/IDL2/SemanticGraph/String.cpp
+// file : CCF/IDL2/SemanticGraph/Sequence.cpp
// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id : $Id$
-#include "CCF/IDL2/SemanticGraph/String.hpp"
+#include "CCF/IDL2/SemanticGraph/Sequence.hpp"
namespace CCF
{
@@ -12,47 +12,47 @@ namespace CCF
{
using Introspection::TypeInfo;
using Introspection::Access;
-
- // BoundedString
+
+ // Sequence
//
//
namespace
{
TypeInfo
- bounded_string_init_ ()
+ sequence_init_ ()
{
- TypeInfo ti (typeid (BoundedString));
- ti.add_base (
- Access::PUBLIC, true, Specialization::static_type_info ());
+ TypeInfo ti (typeid (Sequence));
+ ti.add_base (Access::PUBLIC,
+ true,
+ TypeTemplateSpecialization::static_type_info ());
return ti;
}
- TypeInfo bounded_string_ (bounded_string_init_ ());
+ TypeInfo sequence_ (sequence_init_ ());
}
- TypeInfo const& BoundedString::
- static_type_info () { return bounded_string_; }
+ TypeInfo const& Sequence::
+ static_type_info () { return sequence_; }
- // BoundedWideString
+ // UnboundedSequence
//
//
namespace
{
TypeInfo
- bounded_wide_string_init_ ()
+ unbounded_sequence_init_ ()
{
- TypeInfo ti (typeid (BoundedWideString));
- ti.add_base (
- Access::PUBLIC, true, Specialization::static_type_info ());
+ TypeInfo ti (typeid (UnboundedSequence));
+ ti.add_base (Access::PUBLIC, true, Sequence::static_type_info ());
return ti;
}
- TypeInfo bounded_wide_string_ (bounded_wide_string_init_ ());
+ TypeInfo unbounded_sequence_ (unbounded_sequence_init_ ());
}
- TypeInfo const& BoundedWideString::
- static_type_info () { return bounded_wide_string_; }
+ TypeInfo const& UnboundedSequence::
+ static_type_info () { return unbounded_sequence_; }
}
}
}