summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.cpp')
-rw-r--r--ACE/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.cpp b/ACE/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.cpp
new file mode 100644
index 00000000000..20131d3e299
--- /dev/null
+++ b/ACE/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.cpp
@@ -0,0 +1,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