Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / Bug_1383_Regression / simple_i.h
blobbd36daca0a52058a80b3873ba1de1239eea38389
1 #ifndef SIMPLE_I_H
2 #define SIMPLE_I_H
4 #include "tao/corba.h"
5 #include "ace/Event_Handler.h"
7 #include "simpleS.h"
8 #include "calleeC.h"
10 class Simple_i : public POA_Simple, public ACE_Event_Handler
12 public:
13 Simple_i(CORBA::ORB_ptr orb);
14 void registerCallee(Callee_ptr value);
15 int handle_timeout(const ACE_Time_Value & currentTime, const void * data);
17 private:
18 CORBA::ORB_ptr m_orb;
19 Callee_var m_callee;
22 #endif