summaryrefslogtreecommitdiff
path: root/TAO/tao/Dynamic_TP/Dynamic_TP_ORB_Loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Dynamic_TP/Dynamic_TP_ORB_Loader.h')
-rw-r--r--TAO/tao/Dynamic_TP/Dynamic_TP_ORB_Loader.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/TAO/tao/Dynamic_TP/Dynamic_TP_ORB_Loader.h b/TAO/tao/Dynamic_TP/Dynamic_TP_ORB_Loader.h
new file mode 100644
index 00000000000..476c7e2b156
--- /dev/null
+++ b/TAO/tao/Dynamic_TP/Dynamic_TP_ORB_Loader.h
@@ -0,0 +1,63 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Dynamic_TP_ORB_Loader.h
+ *
+ * $Id$
+ *
+ * Header file for Loading DynamicTP.
+ *
+ *
+ * @author Phil Mesnier <mesnier_p@ociweb.com>
+ */
+//=============================================================================
+
+#ifndef TAO_DYNAMIC_TP_ORB_LOADER_H
+#define TAO_DYNAMIC_TP_ORB_LOADER_H
+#include /**/ "ace/pre.h"
+
+#include "tao/orbconf.h"
+
+#if defined (TAO_HAS_CORBA_MESSAGING) && TAO_HAS_CORBA_MESSAGING != 0
+
+#include "tao/Dynamic_TP/dynamic_tp_export.h"
+#include "ace/Service_Object.h"
+#include "ace/Service_Config.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+class TAO_ORB_Core;
+
+class TAO_Dynamic_TP_Export TAO_Dynamic_TP_ORB_Loader : public ACE_Service_Object
+{
+public:
+
+ /// Constructor.
+ TAO_Dynamic_TP_ORB_Loader (void);
+
+ /// Destructor.
+ virtual ~TAO_Dynamic_TP_ORB_Loader (void);
+
+ /// Initialize the DynamicTP loader hooks.
+ virtual int init (int argc, ACE_TCHAR* []);
+
+private:
+ /// Set to true after init is called.
+ bool initialized_;
+};
+
+
+ACE_STATIC_SVC_DECLARE_EXPORT (TAO_Dynamic_TP, TAO_Dynamic_TP_ORB_Loader)
+ACE_FACTORY_DECLARE (TAO_Dynamic_TP, TAO_Dynamic_TP_ORB_Loader)
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#endif /* (TAO_HAS_CORBA_MESSAGING) && TAO_HAS_CORBA_MESSAGING != 0 */
+
+#include /**/ "ace/post.h"
+#endif /* TAO_DYNAMIC_TP_ORB_LOADER_H */