Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_1383_Regression / simple_i.h
blob642ef9fbdbea0da8b1b89c3c1acc5fe990a78a9c
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:
19 CORBA::ORB_ptr m_orb;
20 Callee_var m_callee;
23 #endif