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 "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_3953_Regression
/
server_i.h
blob
1ffab0f94374c4322f2cdd7a4c0e66d921295f4a
1
#include
"testS.h"
2
3
class
server_i
:
public
POA_server
4
{
5
public
:
6
server_i
(
int
quiet
,
7
CORBA
::
ORB_ptr orb
);
8
9
void
ping
(
CORBA
::
UShort time_to_live
);
10
11
void
start
(
client_ptr c
,
12
CORBA
::
UShort time_to_live
);
13
14
void
shutdown
();
15
16
bool
exception
()
const
;
17
private
:
18
int
quiet_
;
19
// Be quiet.
20
21
client_var client_
;
22
// Pointer to server.
23
24
CORBA
::
ORB_var orb_
;
25
// Pointer to orb.
26
27
bool
exception_
;
28
};