summaryrefslogtreecommitdiff
path: root/orbsvcs/orbsvcs/Event/ECG_Complex_Address_Server.inl
blob: b47e2db3e6830e199e48b01128a0d819e83694b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE TAO_EC_Servant_Var<TAO_ECG_Complex_Address_Server>
TAO_ECG_Complex_Address_Server::create (int is_source_mapping)
{
  TAO_EC_Servant_Var<TAO_ECG_Complex_Address_Server> s;
  ACE_NEW_RETURN (s,
                  TAO_ECG_Complex_Address_Server (is_source_mapping),
                  s);
  return s;
}

TAO_END_VERSIONED_NAMESPACE_DECL