summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/AMI/Client_ORBInitializer.h
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-11-12 02:08:02 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-11-12 02:08:02 +0000
commit770a4d79324637f60d318cdd1d49343fa20dfeca (patch)
tree5df1d66198e32ff7c99b8fcc2972ad7a7af7e2ff /TAO/tests/Portable_Interceptors/AMI/Client_ORBInitializer.h
parentf76c95c5b01450e83b8d6d146f95e8bca19883e2 (diff)
downloadATCD-770a4d79324637f60d318cdd1d49343fa20dfeca.tar.gz
ChangeLogTag:Mon Nov 11 17:27:22 2002 Carlos O'Ryan <coryan@atdesk.com>
Diffstat (limited to 'TAO/tests/Portable_Interceptors/AMI/Client_ORBInitializer.h')
-rw-r--r--TAO/tests/Portable_Interceptors/AMI/Client_ORBInitializer.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/TAO/tests/Portable_Interceptors/AMI/Client_ORBInitializer.h b/TAO/tests/Portable_Interceptors/AMI/Client_ORBInitializer.h
new file mode 100644
index 00000000000..195c9d827c4
--- /dev/null
+++ b/TAO/tests/Portable_Interceptors/AMI/Client_ORBInitializer.h
@@ -0,0 +1,33 @@
+/**
+ * @file Client_ORBInitializer.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@atdesk.com>
+ */
+
+#ifndef Client_ORBInitializer__h_
+#define Client_ORBInitializer__h_
+#include "ace/pre.h"
+
+#include "tao/PortableInterceptorC.h"
+#include "tao/LocalObject.h"
+
+class Client_ORBInitializer
+ : public virtual PortableInterceptor::ORBInitializer
+ , public virtual TAO_Local_RefCounted_Object
+{
+public:
+ Client_ORBInitializer ();
+
+ virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr info
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+};
+
+#include "ace/post.h"
+#endif /* Client_ORBInitializer__h_ */