summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyConsumer_i.cpp
blob: de2d77918eeffc96f533d08977cc09e43cc8ce1d (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
61
62
63
64
65
66
67
68
69
70
71
72
73
/* -*- C++ -*- $Id$ */

#include "orbsvcs/orbsvcs/CosNotifyChannelAdminS.h"
#include "orbsvcs/orbsvcs/Notify/Notify_ProxyConsumer_i.h"
#include "orbsvcs/orbsvcs/Notify/Notify_SupplierAdmin_i.h"

// Implementation skeleton constructor
TAO_Notify_ProxyConsumer_i::TAO_Notify_ProxyConsumer_i
(TAO_Notify_SupplierAdmin_i &myadmin)
  :myadmin_ (myadmin)
{
}

// Implementation skeleton destructor
TAO_Notify_ProxyConsumer_i::~TAO_Notify_ProxyConsumer_i (void)
{
}

void
TAO_Notify_ProxyConsumer_i::init (CORBA::Environment & /* ACE_TRY_ENV */)
{
}

CosNotifyChannelAdmin::ProxyType TAO_Notify_ProxyConsumer_i::MyType (
    CORBA::Environment & /* ACE_TRY_ENV */
  )
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))

  {
    //Add your implementation here
    return (CosNotifyChannelAdmin::ProxyType) 0;
  }

CosNotifyChannelAdmin::SupplierAdmin_ptr TAO_Notify_ProxyConsumer_i::MyAdmin (
    CORBA::Environment & /* ACE_TRY_ENV */
  )
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))

  {
    //Add your implementation here
    return 0;
  }

CosNotification::EventTypeSeq * TAO_Notify_ProxyConsumer_i::obtain_subscription_types (
    CosNotifyChannelAdmin::ObtainInfoMode /* mode */,
    CORBA::Environment & /* ACE_TRY_ENV */
  )
  ACE_THROW_SPEC ((
    CORBA::SystemException
  ))

  {
    //Add your implementation here
    return 0;
  }

void TAO_Notify_ProxyConsumer_i::validate_event_qos (
    const CosNotification::QoSProperties & /* required_qos */,
    CosNotification::NamedPropertyRangeSeq_out /* available_qos */,
    CORBA::Environment & /* ACE_TRY_ENV */
  )
  ACE_THROW_SPEC ((
    CORBA::SystemException,
    CosNotification::UnsupportedQoS
  ))

  {
    //Add your implementation here
  }