summaryrefslogtreecommitdiff
path: root/TAO/tao/SmartProxies/Smart_Proxies.h
blob: cc6b2bad672b4553ae76a6250f6bc928e4553e9f (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
55
56
57
58
59
60
// $Id$
// This may look like C, but it's really -*- C++ -*-
// SmartProxies.h,v 1.0

// ============================================================================
//
// = LIBRARY
//    TAO
//
// = FILENAME
//    SmartProxies.h
//
// = DESCRIPTION
//     This file contains a base class for the generated smart proxy classes
//     It's purpose is to hold the pointer to the real proxy
//
// = AUTHOR
//     Brian Wallis <brian.wallis@ot.com.au>
//
// ============================================================================

#ifndef TAO_SMARTPROXIES_H
#define TAO_SMARTPROXIES_H
#include "ace/pre.h"

#include "smartproxies_export.h"
#include "tao/Object.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

class TAO_SmartProxies_Export TAO_Smart_Proxy_Base 
{
  // = TITLE
  //    TAO_Smart_Proxy_Base
  //
  // = DESCRIPTION
  //    A base class for all TAO_IDL generated smart proxy base classes
  //    Contains the _var pointer to the real proxy
	
public:
  virtual ~TAO_Smart_Proxy_Base (void);
  // Destructor
  
protected:
  TAO_Smart_Proxy_Base (void);
  TAO_Smart_Proxy_Base (CORBA::Object_ptr proxy);
  // Constructors
  
  CORBA::Object_var base_proxy_;
  // The proxy to which remote/collocated calls are made.
};

#if defined (__ACE_INLINE__)
#include "Smart_Proxies.inl"
#endif /* defined INLINE */

#include "ace/post.h"
#endif /* TAO_SMARTPROXIES_H */