summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/NotifyPublish_i.h
blob: 1f9fc6ce117a862167f0ac2eb515b9b711c0809b (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
/* -*- C++ -*- */
// $Id$
// ==========================================================================
//
// = LIBRARY
//   orbsvcs
//
// = FILENAME
//   NotifyPublish_i.h
//
// = DESCRIPTION
//
//
// = AUTHOR
//    Pradeep Gore <pradeep@cs.wustl.edu>
//
// ==========================================================================

#ifndef NOTIFYPUBLISH_I_H
#define NOTIFYPUBLISH_I_H

#include "orbsvcs/orbsvcs/CosNotifyCommS.h"

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

class  TAO_NotifyPublish_i :
public virtual POA_CosNotifyComm::NotifyPublish
{
public:
  // = TITLE
  //   TAO_NotifyPublish_i
  // = DESCRIPTION
  //
  //

  TAO_NotifyPublish_i (void);
  // Constructor

  virtual ~TAO_NotifyPublish_i (void);
  // Destructor

virtual void offer_change (
    const CosNotification::EventTypeSeq & added,
    const CosNotification::EventTypeSeq & removed,
    CORBA::Environment &ACE_TRY_ENV
  )
  ACE_THROW_SPEC ((
    CORBA::SystemException,
    CosNotifyComm::InvalidEventType
  ));
};

#endif /* NOTIFYPUBLISH_I_H */