3 //=============================================================================
7 * This class implements the Time IDL interface.
9 * @author Darrell Brunsch <brunsch@cs.wustl.edu>
11 //=============================================================================
17 #include "ThreeTierC.h"
18 #include "ThreeTierS.h"
23 * @brief ThreeTier Object Implementation as middle
25 * The middle implementaiton of the ThreeTier interface simply
26 * forwards requests to
28 class Middle_i
: public POA_ThreeTier
31 Middle_i (CORBA::ORB_ptr orb
, ThreeTier_ptr target
);
34 bool parse_args (int argc
, ACE_TCHAR
* argv
[] );
36 //////////////////////////////////////
37 /// Implement the ThreeTier interface
40 virtual ::CORBA::ULong
tickCount ();
41 virtual ::CORBA::ULong
tockCount ();
42 virtual void shutdown ();
46 ThreeTier_var target_
;
48 #endif /* MIDDLE_I_H */