More tests update
[ACE_TAO.git] / TAO / tests / LongUpcalls / Controller.h
blob5957473e7e4b0372f3e48fb57e64f6fc4ef464a7
1 #ifndef LONGUPCALLS_CONTROLLER_H
2 #define LONGUPCALLS_CONTROLLER_H
4 #include "TestS.h"
6 class Controller
7 : public virtual POA_Test::Controller
9 public:
10 Controller (void);
11 // Constructor
13 void dump_results (void);
14 // Print out the results and any errors
16 // = The skeleton methods
17 virtual void worker_started (void);
18 virtual void worker_finished (void);
20 private:
21 TAO_SYNCH_MUTEX mutex_;
22 CORBA::ULong start_count_;
23 CORBA::ULong finish_count_;
26 #endif /* LONGUPCALLS_CONTROLLER_H */