summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/Security/Callback/client_i.h
blob: ae1d1405e9b96d978d5c6bf72aded1c8ac29e16b (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
39
40
41
// -*- C++ -*-

//=============================================================================
/**
 * @file client_i.h
 *
 * $Id$ *
 * Header for the SSLIOP Callback test client callback implementation.
 *
 * @author Robert Martin <martin_r@ociweb.com>
 */
//=============================================================================

#ifndef CLIENT_I_H
#define CLIENT_I_H

#include "clientS.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "serverC.h"

class client_i
  : public virtual POA_client
{
public:

  client_i (server_ptr s);
  virtual ~client_i (void);

  virtual void test_reply (const char *msg);

private:

  server_var server_;

};

#endif  /* CLIENT_I_H */