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
Changes to attempt to silence bcc64x
[ACE_TAO.git]
/
TAO
/
DevGuideExamples
/
BiDirectionalGIOP
/
callback_i.h
blob
4c575795233cc95be51f6e09b64401af2237c9c8
1
#ifndef CALLBACKI_H_
2
#define CALLBACKI_H_
3
4
#include
"callbackS.h"
5
6
class
Callback_i
:
public virtual
POA_Callback
7
{
8
public
:
9
Callback_i
(
CORBA
::
ORB_ptr orb
);
10
11
virtual
~
Callback_i
() =
default
;
12
13
virtual
void
shutdown
();
14
15
virtual
void
callback_method
();
16
17
private
:
18
CORBA
::
ORB_var orb_
;
19
};
20
21
22
#endif
/* CALLBACKI_H_ */