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
/
tests
/
Bug_1551_Regression
/
Server_Task.h
blob
a35c3689b07833ce0dd7152f2c6034bc9573e5ae
1
#ifndef SERVER_TASK_H
2
#define SERVER_TASK_H
3
4
#include
/**/
"ace/pre.h"
5
6
#include
"tao/ORB.h"
7
#include
"ace/Task.h"
8
9
class
Server_Task
:
public
ACE_Task_Base
10
{
11
public
:
12
Server_Task
(
CORBA
::
ORB_ptr orb
,
13
ACE_Thread_Manager
*
thr_mgr
);
14
15
int
svc
(
void
);
16
17
private
:
18
CORBA
::
ORB_var orb_
;
19
};
20
21
#include
/**/
"ace/post.h"
22
#endif
/* SERVER_TASK_H */