summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/POA_Current_Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/POA_Current_Factory.cpp')
-rw-r--r--TAO/tao/PortableServer/POA_Current_Factory.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/TAO/tao/PortableServer/POA_Current_Factory.cpp b/TAO/tao/PortableServer/POA_Current_Factory.cpp
new file mode 100644
index 00000000000..baefc206285
--- /dev/null
+++ b/TAO/tao/PortableServer/POA_Current_Factory.cpp
@@ -0,0 +1,30 @@
+// $Id$
+
+#include "tao/PortableServer/POA_Current_Factory.h"
+#include "tao/PortableServer/POA_Current.h"
+#include "tao/ORB_Core.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+CORBA::Object_ptr
+TAO_POA_Current_Factory::create_object (CORBA::ORB_ptr,
+ int,
+ ACE_TCHAR * [])
+{
+ TAO::Portable_Server::POA_Current* adapter = 0;
+ ACE_NEW_RETURN (adapter,
+ TAO::Portable_Server::POA_Current (),
+ 0);
+ return adapter;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+ACE_FACTORY_DEFINE (TAO_PortableServer, TAO_POA_Current_Factory)
+ACE_STATIC_SVC_DEFINE (TAO_POA_Current_Factory,
+ ACE_TEXT ("TAO_POA_Current_Factory"),
+ ACE_SVC_OBJ_T,
+ &ACE_SVC_NAME (TAO_POA_Current_Factory),
+ ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
+ 0)
+