blob: 2ba1ae625e0099302b8669dfffb88be48fff7b02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/**
* @file ORB_Task.h
*
* $Id$
*
* @author Carlos O'Ryan <coryan@atdesk.com>
*
*/
#ifndef TAO_REGRESSION_ORB_TASK_H
#define TAO_REGRESSION_ORB_TASK_H
#include "tao/ORB.h"
#include "ace/Task.h"
class ORB_Task : public ACE_Task_Base
{
public:
ORB_Task (CORBA::ORB_ptr orb);
virtual int svc (void);
private:
CORBA::ORB_var orb_;
};
#endif /* TAO_REGRESSION_ORB_TASK_H*/
|