summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/Bug_2074_Regression/ORB_Task.h
blob: cae39cbce9f60e48611bf6cacbec272b91476265 (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
#ifndef ORB_Task__h_
#define ORB_Task__h_
/**
 * @file ORB_Task.h
 *
 * $Id$
 *
 * @author Johnny Willemsen  <jwillemsen@remedy.nl>
 *
 */
#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 /* ORB_Task__h_ */