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
Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_3108_Regression
/
test_i.h
blob
7d68c51151153ba7b282d8f05991d9f9ce67d91c
1
#ifndef TEST_I_HH
2
#define TEST_I_HH
3
#include
"testS.h"
4
5
class
test_i
:
6
public
POA_test
7
{
8
public
:
9
/// Constructor.
10
test_i
(
CORBA
::
ORB_ptr orb
);
11
12
/// Test method.
13
CORBA
::
Long
test_method
();
14
virtual
void
shutdown
();
15
16
private
:
17
CORBA
::
ORB_var orb_
;
18
};
19
#endif