summaryrefslogtreecommitdiff
path: root/CIAO/performance-tests/Benchmark/Multi_Threaded/Client_Task.h
blob: e3330a763071ecc33473b4851356c1f0dba1d1f2 (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
28
29
//
// $Id$
//

#ifndef CLIENT_TASK_H
#define CLIENT_TASK_H
#include /**/ "ace/pre.h"

#include "RoundTripClientC.h"
#include "ace/Task.h"

/// Implement the Test::Client_Task interface
class Client_Task : public ACE_Task_Base
{
public:
  /// Constructor
  Client_Task (Benchmark::RoundTripClient_ptr roundtrip);

  /// The service method
  virtual int svc (void);

private:

  /// The object reference used for this test
  Benchmark::RoundTripClient_var roundtrip_;
};

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