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

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

#include "rt_notify_export.h"

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

#include "Factory.h"

/**
 * @class TAO_NS_RTCORBA_Factory
 *
 * @brief The Factory for the RTCORBA aware Notify classes.
 *
 */
class TAO_RT_Notify_Export TAO_NS_RTCORBA_Factory : public TAO_NS_Factory
{
public:
  /// Constuctor
  TAO_NS_RTCORBA_Factory (void);

  /// Destructor
  ~TAO_NS_RTCORBA_Factory ();

  /// Create QoSAdmin
  virtual void create (TAO_NS_QoSAdmin*& qos_admin ACE_ENV_SINGLE_ARG_DECL);

  /// Create EventChannel
  virtual void create (TAO_NS_EventChannel*& ACE_ENV_SINGLE_ARG_DECL);

  /// Create StructuredProxyPushSupplier
  virtual void create (TAO_NS_StructuredProxyPushSupplier*& proxy ACE_ENV_SINGLE_ARG_DECL);

  /// Create StructuredProxyPushConsumer
  virtual void create (TAO_NS_StructuredProxyPushConsumer*& proxy ACE_ENV_SINGLE_ARG_DECL);
};

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

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