Merge pull request #2317 from jwillemsen/jwi-deleteop
[ACE_TAO.git] / TAO / orbsvcs / tests / Security / Callback / client_i.h
blob1966178c441a32d78c67f6ce5ff11822e62f6c1a
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file client_i.h
7 * *
8 * Header for the SSLIOP Callback test client callback implementation.
10 * @author Robert Martin <martin_r@ociweb.com>
12 //=============================================================================
14 #ifndef CLIENT_I_H
15 #define CLIENT_I_H
17 #include "clientS.h"
19 #if !defined (ACE_LACKS_PRAGMA_ONCE)
20 #pragma once
21 #endif /* ACE_LACKS_PRAGMA_ONCE */
23 #include "serverC.h"
25 class client_i
26 : public virtual POA_client
28 public:
29 client_i (server_ptr s);
30 virtual ~client_i ();
32 virtual void test_reply (const char *msg);
34 private:
35 server_var server_;
38 #endif /* CLIENT_I_H */