Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / LongUpcalls / Controller.h
blob3015093089904ab8360bd8db304f54543909c43f
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 ();
11 // Constructor
13 void dump_results ();
14 // Print out the results and any errors
16 // = The skeleton methods
17 virtual void worker_started ();
18 virtual void worker_finished ();
20 private:
21 TAO_SYNCH_MUTEX mutex_;
22 CORBA::ULong start_count_;
23 CORBA::ULong finish_count_;
26 #endif /* LONGUPCALLS_CONTROLLER_H */