summaryrefslogtreecommitdiff
path: root/TAO/tao/IORInterceptor_Adapter_Factory.h
diff options
context:
space:
mode:
authoredwardgt <edwardgt@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-18 15:48:05 +0000
committeredwardgt <edwardgt@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-18 15:48:05 +0000
commitc0977043f80e74b83eacdd5a2274befe1d4ff79b (patch)
treed9965a27cb669beb40adc20bd8ffcbe31418ed23 /TAO/tao/IORInterceptor_Adapter_Factory.h
parente60fad43f96287cbf0a209b4c9784379f3647869 (diff)
downloadATCD-c0977043f80e74b83eacdd5a2274befe1d4ff79b.tar.gz
ChangeLogTag: Fri Jul 18 10:35:23 2003 George Edwards <g.edwards@vanderbilt.edu>
Diffstat (limited to 'TAO/tao/IORInterceptor_Adapter_Factory.h')
-rw-r--r--TAO/tao/IORInterceptor_Adapter_Factory.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/TAO/tao/IORInterceptor_Adapter_Factory.h b/TAO/tao/IORInterceptor_Adapter_Factory.h
new file mode 100644
index 00000000000..af1bbaab683
--- /dev/null
+++ b/TAO/tao/IORInterceptor_Adapter_Factory.h
@@ -0,0 +1,47 @@
+// This may look like C, but it's really -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file IORInterceptor_Adapter_Factory.h
+ *
+ * $Id$
+ *
+ * @author George Edwards <g.edwards@vanderbilt.edu>
+ */
+//=============================================================================
+
+
+#ifndef TAO_IORINTERCEPTOR_ADAPTER_FACTORY_H
+#define TAO_IORINTERCEPTOR_ADAPTER_FACTORY_H
+#include "ace/pre.h"
+
+#include "tao/corbafwd.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/IORInterceptor_Adapter.h"
+
+/**
+ * @class TAO_IORInterceptor_Adapter_Factory
+ *
+ * @brief TAO_IORInterceptor_Adapter_Factory.
+ *
+ * Class that creates one instance of TAO_IOR_Interceptor_Adapter per
+ * ORB on the ORB's first usage of its ior_interceptor_adapter_. This is a base
+ * class for the actual implementation in the TAO_IORInterceptor library.
+ */
+class TAO_Export TAO_IORInterceptor_Adapter_Factory : public ACE_Service_Object
+{
+public:
+ virtual ~TAO_IORInterceptor_Adapter_Factory (void);
+
+ virtual TAO_IORInterceptor_Adapter * create (
+ ACE_ENV_SINGLE_ARG_DECL
+ )
+ ACE_THROW_SPEC ((CORBA::SystemException)) = 0;
+};
+
+#include "ace/post.h"
+#endif /* TAO_IORINTERCEPTOR_ADAPTER_FACTORY_H */