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 #2303 from jwillemsen/jwi-803
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_3790_Regression
/
simple_test_i.h
blob
f005511d55426ad3ab4079b26eb95a09b4e2e059
1
2
#ifndef HELLO_H
3
#define HELLO_H
4
5
#include
"simple_testS.h"
6
7
class
Simple_Test_i
8
:
public virtual POA_simple
::
SimpleTest_T
9
{
10
public
:
11
/// Constructor
12
Simple_Test_i
(
CORBA
::
ORB_ptr orb
);
13
14
// = The skeleton methods
15
virtual
void
shutdown
();
16
17
private
:
18
/// Use an ORB reference to convert strings to objects and shutdown
19
/// the application.
20
CORBA
::
ORB_var orb_
;
21
};
22
23
#endif
/* HELLO_H */