summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/AnyTypeCode/String_TypeCode.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/AnyTypeCode/String_TypeCode.inl')
-rw-r--r--ACE/TAO/tao/AnyTypeCode/String_TypeCode.inl18
1 files changed, 18 insertions, 0 deletions
diff --git a/ACE/TAO/tao/AnyTypeCode/String_TypeCode.inl b/ACE/TAO/tao/AnyTypeCode/String_TypeCode.inl
new file mode 100644
index 00000000000..c83c7be8667
--- /dev/null
+++ b/ACE/TAO/tao/AnyTypeCode/String_TypeCode.inl
@@ -0,0 +1,18 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+template <class RefCountPolicy>
+ACE_INLINE
+TAO::TypeCode::String<RefCountPolicy>::String (CORBA::TCKind kind,
+ CORBA::ULong length)
+ : ::CORBA::TypeCode (kind)
+ , RefCountPolicy ()
+ , length_ (length)
+{
+ // ACE_ASSERT (kind == CORBA::tk_string || kind == CORBA::tk_wstring);
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL