3 //=============================================================================
7 * This class implements the ThreeTier IDL interface.
8 * It acts as the "end of the line" for tick and tock
11 * @author Dale Wilson <wilsond@ociweb.com>
13 //=============================================================================
19 #include "ThreeTierS.h"
21 class Sink_i
: public POA_ThreeTier
25 /// @param an initialized ORB
26 Sink_i (CORBA::ORB_ptr orb
);
31 bool parse_args (int & argc
, ACE_TCHAR
* argv
[]);
33 ///Implement ThreeTier methods
36 virtual ::CORBA::ULong
tickCount ();
37 virtual ::CORBA::ULong
tockCount ();
38 virtual void shutdown ();
43 unsigned long tickCount_
;
44 unsigned long tockCount_
;