summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Common/OrbRunner.h
blob: c2d1b7a9d91dc8b3f23a4e6987f7b9469d83d5ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef ORB_RUNNER_H
#define ORB_RUNNER_H

#include "CSD_TP_Test_Export.h"
#include "tao/ORB.h"

class CSD_TP_Test_Export OrbRunner
{
public:
  OrbRunner(CORBA::ORB_ptr orb, unsigned num_orb_threads = 1);
  virtual ~OrbRunner();

  void run();

private:
  CORBA::ORB_var orb_;
  unsigned       num_orb_threads_;
};

#endif