Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git] / TAO / orbsvcs / tests / FaultTolerance / IOGR / Client_i.h
bloba699a349ac615adaa708ccf96aabb15ed83af5c6
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 (void);
33 private:
34 CORBA::ORB_var orb_;
38 #include /**/ "ace/post.h"
39 #endif /*TEST_FT_IOGR_CLIENT_I_H*/