summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/Fixed_TypeCode.inl
blob: 9db9ca2b26d194f3c98c6628201e151ed6d80eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// -*- C++ -*-
//
// $Id$

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)
{
}