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
/
examples
/
CSD_Strategy
/
ThreadPool4
/
Callback_i.h
blob
dca0793904f93b25f62089715d94af41b17ae6c4
1
#ifndef CALLBACK_I_H
2
#define CALLBACK_I_H
3
4
#include
"CallbackS.h"
5
6
7
class
Callback_i
:
public virtual
POA_Callback
8
{
9
public
:
10
Callback_i
();
11
12
virtual
~
Callback_i
();
13
14
virtual
void
test_method
(
15
);
16
};
17
18
19
#endif