summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Foo_C/Foo_C_ClientEngine.h
blob: 4e6e3f7d045a3f2e09ee1c7e3033abe64aec92a6 (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
30
31
32
33
34
35
36
37
38
// This may look like C, but it's really -*- C++ -*-

//=============================================================================
/**
 *  @file    Foo_C_ClientEngine.h
 *
 *  @author  Tim Bradley <bradley_t@ociweb.com>
 */
//=============================================================================

#ifndef FOO_C_CLIENT_ENGINE_H
#define FOO_C_CLIENT_ENGINE_H

#include "CSD_TP_Foo_C_Export.h"
#include "ClientEngine.h"
#include "Foo_CC.h"
#include "Foo_C_Statistics.h"


class CSD_TP_Foo_C_Export Foo_C_ClientEngine : public ClientEngine
{
  public:

    Foo_C_ClientEngine(Foo_C_ptr obj,
                       unsigned  client_id);
    virtual ~Foo_C_ClientEngine();

    virtual bool execute(void);

    static void expected_results(Foo_C_Statistics& stats);

  private:

    Foo_C_var obj_;
    unsigned  client_id_;
};

#endif