blob: 00ab0bec9406c2fa2410c34ee0633b2c88d7a48f (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// -*- C++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// test
//
// = FILENAME
// Client_i.h
//
// = DESCRIPTION
// A helper class for the client
//
// = AUTHOR
// Bala Natarajan <bala@cs.wustl.edu>
//
// ============================================================================
#ifndef TEST_FT_IOGR_CLIENT_I_H
#define TEST_FT_IOGR_CLIENT_I_H
#include "ace/pre.h"
#include "tao/ORB.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#if defined(_MSC_VER)
#if (_MSC_VER >= 1200)
#pragma warning(push)
#endif /* _MSC_VER >= 1200 */
#pragma warning(disable:4250)
#endif /* _MSC_VER */
class Client_i
{
public:
Client_i (CORBA::ORB_ptr orb);
// Our constructor
void init (ACE_ENV_SINGLE_ARG_DECL);
// Initialize the ORB etc.
private:
CORBA::ORB_var orb_;
};
#include "ace/post.h"
#endif /*TEST_FT_IOGR_CLIENT_I_H*/
|