summaryrefslogtreecommitdiff
path: root/TAO/tao/Sequence_TypeCode.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Sequence_TypeCode.inl')
-rw-r--r--TAO/tao/Sequence_TypeCode.inl16
1 files changed, 16 insertions, 0 deletions
diff --git a/TAO/tao/Sequence_TypeCode.inl b/TAO/tao/Sequence_TypeCode.inl
new file mode 100644
index 00000000000..2c0edb2e190
--- /dev/null
+++ b/TAO/tao/Sequence_TypeCode.inl
@@ -0,0 +1,16 @@
+// -*- C++ -*-
+//
+// $Id$
+
+template <class RefCountPolicy>
+ACE_INLINE
+TAO::TypeCode::Sequence<RefCountPolicy>::Sequence (
+ CORBA::TCKind kind,
+ CORBA::TypeCode_ptr * content_type,
+ CORBA::ULong length)
+ : kind_ (kind)
+ , content_type_ (content_type)
+ , length_ (length)
+{
+ // ACE_ASSERT (kind == CORBA::tk_array || kind == CORBA::tk_sequence);
+}