summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_2248_Regression/Client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Bug_2248_Regression/Client_i.h')
-rw-r--r--TAO/orbsvcs/tests/Bug_2248_Regression/Client_i.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/Bug_2248_Regression/Client_i.h b/TAO/orbsvcs/tests/Bug_2248_Regression/Client_i.h
new file mode 100644
index 00000000000..e85d58ef471
--- /dev/null
+++ b/TAO/orbsvcs/tests/Bug_2248_Regression/Client_i.h
@@ -0,0 +1,39 @@
+// -*- C++ -*-
+// $Id$
+
+// ============================================================================
+//
+// = FILENAME
+// Client_i.h
+//
+// = DESCRIPTION
+// A helper class for the client
+//
+// ============================================================================
+
+#ifndef BUG_2248_REGRESSION_CLIENT_I_H
+#define BUG_2248_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 (void);
+ // Initialize the ORB etc.
+
+private:
+ CORBA::ORB_var orb_;
+
+};
+
+#include /**/ "ace/post.h"
+#endif /* BUG_2248_REGRESSION_CLIENT_I_H*/