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.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp b/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp
deleted file mode 100644
index a9d135b2d33..00000000000
--- a/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Sequence.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-// file : CCF/IDL2/SemanticGraph/Sequence.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "CCF/IDL2/SemanticGraph/Sequence.hpp"
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticGraph
- {
- using Introspection::TypeInfo;
- using Introspection::Access;
-
- // Sequence
- //
- //
- namespace
- {
- TypeInfo
- sequence_init_ ()
- {
- TypeInfo ti (typeid (Sequence));
- ti.add_base (Access::PUBLIC,
- true,
- TypeTemplateSpecialization::static_type_info ());
- return ti;
- }
-
- TypeInfo sequence_ (sequence_init_ ());
- }
-
- TypeInfo const& Sequence::
- static_type_info () { return sequence_; }
-
-
- // UnboundedSequence
- //
- //
- namespace
- {
- TypeInfo
- unbounded_sequence_init_ ()
- {
- TypeInfo ti (typeid (UnboundedSequence));
- ti.add_base (Access::PUBLIC, true, Sequence::static_type_info ());
- return ti;
- }
-
- TypeInfo unbounded_sequence_ (unbounded_sequence_init_ ());
- }
-
- TypeInfo const& UnboundedSequence::
- static_type_info () { return unbounded_sequence_; }
- }
- }
-}