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_1361_Regression
/
ORB_Task.h
blob
a8fa63d7724c763992a227be023ccef33e058804
1
/**
2
* @file ORB_Task.h
3
*
4
* @author Carlos O'Ryan <coryan@atdesk.com>
5
*/
6
#ifndef TAO_REGRESSION_ORB_TASK_H
7
#define TAO_REGRESSION_ORB_TASK_H
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
();
17
18
private
:
19
CORBA
::
ORB_var orb_
;
20
};
21
22
#endif
/* TAO_REGRESSION_ORB_TASK_H*/