summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/TM_Daemon/Client_Task.h
blob: 75d2bbf86a0dfb6acb72f63d244c8da91a8f9b27 (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
26
27
#ifndef CLIENT_TASK_H
#define CLIENT_TASK_H
#include /**/ "ace/pre.h"

#include "tao/ORB.h"
#include "ace/Task.h"

/// Implement a simple ACE_Task to run the ORB event loop
/**
 * This class is used to implement a simple thread pool.
 */
class Client_Task : public ACE_Task_Base
{
public:
  /// Constructor
  Client_Task (CORBA::ORB_ptr orb);

  /// The thread entry point
  virtual int svc (void);

private:
  /// Keep a reference to the ORB
  CORBA::ORB_var orb_;
};

#include /**/ "ace/post.h"
#endif /* CLIENT_TASK_H */