summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/Bug_2247_Regression/Client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/orbsvcs/tests/Bug_2247_Regression/Client_i.h')
-rw-r--r--trunk/TAO/orbsvcs/tests/Bug_2247_Regression/Client_i.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/trunk/TAO/orbsvcs/tests/Bug_2247_Regression/Client_i.h b/trunk/TAO/orbsvcs/tests/Bug_2247_Regression/Client_i.h
new file mode 100644
index 00000000000..50efe0c1099
--- /dev/null
+++ b/trunk/TAO/orbsvcs/tests/Bug_2247_Regression/Client_i.h
@@ -0,0 +1,29 @@
+// -*- C++ -*-
+// $Id$
+
+#ifndef BUG_2247_REGRESSION_CLIENT_I_H
+#define BUG_2247_REGRESSION_CLIENT_I_H
+
+#include /**/ "ace/pre.h"
+#include "tao/ORB.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+class Client_i
+{
+public:
+ Client_i (CORBA::ORB_ptr orb);
+ // Our constructor
+
+ int init (ACE_ENV_SINGLE_ARG_DECL);
+ // Initialize the ORB etc.
+
+private:
+ CORBA::ORB_var orb_;
+
+};
+
+#include /**/ "ace/post.h"
+#endif /* BUG_2247_REGRESSION_CLIENT_I_H */