summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1383_Regression/simple_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1383_Regression/simple_i.h')
-rw-r--r--TAO/tests/Bug_1383_Regression/simple_i.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1383_Regression/simple_i.h b/TAO/tests/Bug_1383_Regression/simple_i.h
new file mode 100644
index 00000000000..d03790b4684
--- /dev/null
+++ b/TAO/tests/Bug_1383_Regression/simple_i.h
@@ -0,0 +1,24 @@
+// $Id$
+
+#ifndef SIMPLE_I_H
+#define SIMPLE_I_H
+
+#include "tao/corba.h"
+#include "ace/Event_Handler.h"
+
+#include "simpleS.h"
+#include "calleeC.h"
+
+class Simple_i : public POA_Simple, ACE_Event_Handler {
+public:
+ Simple_i(CORBA::ORB_ptr orb);
+ void registerCallee(Callee_ptr value);
+ int handle_timeout(const ACE_Time_Value & currentTime, const void * data);
+
+private:
+
+ CORBA::ORB_ptr m_orb;
+ Callee_var m_callee;
+};
+
+#endif