repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git]
/
TAO
/
performance-tests
/
CSD_Strategy
/
TestInf
/
OrbRunner.h
blob
12847b0a9de360d43449d2a818a0362d1f9465ea
1
#ifndef ORB_RUNNER_H
2
#define ORB_RUNNER_H
3
4
#include
"CSD_PT_TestInf_Export.h"
5
#include
"tao/ORB.h"
6
7
class
CSD_PT_TestInf_Export OrbRunner
8
{
9
public
:
10
OrbRunner
(
CORBA
::
ORB_ptr orb
,
unsigned
num_orb_threads
=
1
);
11
virtual
~
OrbRunner
();
12
13
void
run
();
14
15
private
:
16
CORBA
::
ORB_var orb_
;
17
unsigned
num_orb_threads_
;
18
};
19
20
#endif