summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier_Tie.h
blob: ff4b129d0dfaf872308d1953e823a98026fbf966 (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
/* -*- C++ -*- */
/**
 *  @file StructuredProxyPushSupplier_Tie.h
 *
 *  $Id$
 *
 *  @author Pradeep Gore <pradeep@oomworks.com>
 *
 *
 */

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

#include "../notify_export.h"

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

#include "orbsvcs/CosNotifyChannelAdminS.h"
#include "StructuredProxyPushSupplier.h"
#include "../Destroy_Callback.h"

/**
 * @class TAO_NS_StructuredProxyPushSupplier_Tie
 *
 * @brief Tie implementation that implements CosNotifyChannelAdmin::StructuredProxyPushSupplier.
 *
 */
class TAO_Notify_Export TAO_NS_StructuredProxyPushSupplier_Tie : public POA_CosNotifyChannelAdmin::StructuredProxyPushSupplier_tie <TAO_NS_StructuredProxyPushSupplier>, public TAO_NS_Destroy_Callback
{
  typedef POA_CosNotifyChannelAdmin::StructuredProxyPushSupplier_tie <TAO_NS_StructuredProxyPushSupplier> inherited;

public:
  /// Constuctor
  TAO_NS_StructuredProxyPushSupplier_Tie (void);

  /// Destructor
  ~TAO_NS_StructuredProxyPushSupplier_Tie ();

  /// ServantBase refcount methods.
  virtual void _add_ref (ACE_ENV_SINGLE_ARG_DECL);
  virtual void _remove_ref (ACE_ENV_SINGLE_ARG_DECL);

  /// TAO_NS_Destroy_Callback methods
  virtual void release (void);

protected:
  /// The Tied object providing the required proxy functionality.
  TAO_NS_StructuredProxyPushSupplier tied_;  
};

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

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