summaryrefslogtreecommitdiff
path: root/apps/Orbix-Examples/Event_Comm/include/Event_Comm_i.h
blob: 3775d071683e47c73da7842c8322a9d0e6da0285 (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
/* -*- C++ -*- */
// $Id$


// ============================================================================
//
// = LIBRARY
//    EventComm
//
// = FILENAME
//    Event_Comm_i.h
//
// = DESCRIPTION
//    Class interface for the implementation of the distributed
//    event notification mechanism.
//
// = AUTHOR
//    Douglas C. Schmidt (schmidt@cs.wustl.edu)
//
// ============================================================================

#ifndef _EVENT_COMM_I_H
#define _EVENT_COMM_I_H

#include "Notification_Receiver_i.h"
#include "Notifier_i.h"

#if defined (ACE_HAS_ORBIX) && (ACE_HAS_ORBIX != 0)

// Tie the Notification_Receiver and Notifier implementation classes
// together with the IDL interface.

DEF_TIE_Event_Comm_Notification_Receiver (Notification_Receiver_i)
DEF_TIE_Event_Comm_Notifier (Notifier_i)

#endif /* ACE_HAS_ORBIX */
#endif /* _EVENT_COMM_I_H */