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 #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
examples
/
CSD_Strategy
/
ThreadPool5
/
Callback_i.h
blob
ce967dfe29b6bc16a261068974559f64d82b981a
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
11
Callback_i
();
12
13
virtual
~
Callback_i
();
14
15
virtual
void
test_method
(
16
);
17
};
18
19
20
#endif