Merge pull request #2306 from mitza-oci/warnings
[ACE_TAO.git] / TAO / orbsvcs / tests / FaultTolerance / IOGR / Client_i.h
blob1507c02fe2a3841836a40b25d4f61ee539a7497f
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file Client_i.h
7 * A helper class for the client
9 * @author Bala Natarajan <bala@cs.wustl.edu>
11 //=============================================================================
14 #ifndef TEST_FT_IOGR_CLIENT_I_H
15 #define TEST_FT_IOGR_CLIENT_I_H
17 #include /**/ "ace/pre.h"
18 #include "tao/ORB.h"
20 #if !defined (ACE_LACKS_PRAGMA_ONCE)
21 # pragma once
22 #endif /* ACE_LACKS_PRAGMA_ONCE */
24 class Client_i
26 public:
27 /// Our constructor
28 Client_i (CORBA::ORB_ptr orb);
30 /// Initialize the ORB etc.
31 void init ();
33 private:
34 CORBA::ORB_var orb_;
37 #include /**/ "ace/post.h"
38 #endif /*TEST_FT_IOGR_CLIENT_I_H*/