summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.cpp
blob: 20131d3e2990f22b7e6577cc7098b3669acf8147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// $Id$

#include "tao/TAO_Singleton.h"
#include "orbsvcs/Notify/RT_Properties.h"

#if ! defined (__ACE_INLINE__)
#include "orbsvcs/Notify/RT_Properties.inl"
#endif /* __ACE_INLINE__ */

ACE_RCSID(RT_Notify, TAO_Notify_RT_Properties, "$Id$")


TAO_BEGIN_VERSIONED_NAMESPACE_DECL

TAO_Notify_RT_Properties::TAO_Notify_RT_Properties (void)
{
}

TAO_Notify_RT_Properties::~TAO_Notify_RT_Properties ()
{
}

TAO_Notify_RT_Properties *
TAO_Notify_RT_Properties::instance (void)
{
  // Hide the template instantiation to prevent multiple instances
  // from being created.

  return
    TAO_Singleton<TAO_Notify_RT_Properties, TAO_SYNCH_MUTEX>::instance ();
}

TAO_END_VERSIONED_NAMESPACE_DECL