Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_2248_Regression / Client_i.h
blobf3cd250942b1f28e65ff54ae2fb6e49b5620e448
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file Client_i.h
7 * A helper class for the client
8 */
9 //=============================================================================
12 #ifndef BUG_2248_REGRESSION_CLIENT_I_H
13 #define BUG_2248_REGRESSION_CLIENT_I_H
15 #include /**/ "ace/pre.h"
16 #include "tao/ORB.h"
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 # pragma once
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 class Client_i
24 public:
25 /// Our constructor
26 Client_i (CORBA::ORB_ptr orb);
28 /// Initialize the ORB etc.
29 int init ();
31 private:
32 CORBA::ORB_var orb_;
35 #include /**/ "ace/post.h"
36 #endif /* BUG_2248_REGRESSION_CLIENT_I_H*/