summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1020_Regression/ORB_Task.h
blob: 498f8bfd09afc2e08fc40915f604fc043cce2111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef ORB_Task__h_
#define ORB_Task__h_
/**
 * @file ORB_Task.h
 *
 * @author Carlos O'Ryan <coryan@atdesk.com>
 */
#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 ();

private:
  CORBA::ORB_var orb_;
};

#endif /* ORB_Task__h_ */