summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3384_Regression/Client_i.h
blob: c9e63137ff0b1331f51f244108d0147ccef5ac8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// $Id$

#include "TestS.h"

class Client : public POA_Test::Client
{
public:
  Client ()
    : POA_Test::Client(),
      reply_count_ (0) {}
  virtual ~Client ();

  virtual void reply (
    const char * msg);

  int reply_count () { return this->reply_count_; }

private:
  int  reply_count_;
};