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 #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
Bug_2074_Regression
/
ORB_Task.h
blob
b188a5f28f6a7b363ad72bc290b5ddd40c18ebf5
1
#ifndef ORB_Task__h_
2
#define ORB_Task__h_
3
/**
4
* @file ORB_Task.h
5
*
6
* @author Johnny Willemsen <jwillemsen@remedy.nl>
7
*/
8
#include
"tao/ORB.h"
9
#include
"ace/Task.h"
10
11
class
ORB_Task
:
public
ACE_Task_Base
12
{
13
public
:
14
ORB_Task
(
CORBA
::
ORB_ptr orb
);
15
16
virtual
int
svc
(
void
);
17
18
private
:
19
CORBA
::
ORB_var orb_
;
20
};
21
22
#endif
/* ORB_Task__h_ */