summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/Fixed_TypeCode.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/AnyTypeCode/Fixed_TypeCode.inl')
-rw-r--r--TAO/tao/AnyTypeCode/Fixed_TypeCode.inl18
1 files changed, 18 insertions, 0 deletions
diff --git a/TAO/tao/AnyTypeCode/Fixed_TypeCode.inl b/TAO/tao/AnyTypeCode/Fixed_TypeCode.inl
new file mode 100644
index 00000000000..62f3e63aac5
--- /dev/null
+++ b/TAO/tao/AnyTypeCode/Fixed_TypeCode.inl
@@ -0,0 +1,18 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+template <class RefCountPolicy>
+ACE_INLINE
+TAO::TypeCode::Fixed<RefCountPolicy>::Fixed (CORBA::UShort digits,
+ CORBA::UShort scale)
+ : ::CORBA::TypeCode (CORBA::tk_fixed)
+ , RefCountPolicy ()
+ , digits_ (digits)
+ , scale_ (scale)
+{
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL