summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/IdAssignmentStrategyUser.cpp
blob: 1b6f8064d428e3588bb8d0a603f056d51961248c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "tao/PortableServer/IdAssignmentStrategyUser.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
  namespace Portable_Server
  {
    char
    IdAssignmentStrategyUser::id_assignment_key_type () const
    {
      return 'U';
    }

    bool
    IdAssignmentStrategyUser::has_system_id () const
    {
      return false;
    }
  }
}

TAO_END_VERSIONED_NAMESPACE_DECL