Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / CSD_Strategy_Tests / TP_Common / OrbRunner.h
blobc2d1b7a9d91dc8b3f23a4e6987f7b9469d83d5ad
1 #ifndef ORB_RUNNER_H
2 #define ORB_RUNNER_H
4 #include "CSD_TP_Test_Export.h"
5 #include "tao/ORB.h"
7 class CSD_TP_Test_Export OrbRunner
9 public:
10 OrbRunner(CORBA::ORB_ptr orb, unsigned num_orb_threads = 1);
11 virtual ~OrbRunner();
13 void run();
15 private:
16 CORBA::ORB_var orb_;
17 unsigned num_orb_threads_;
20 #endif