summaryrefslogtreecommitdiff
path: root/apps/Orbix-Examples/Event_Comm/libsrc/Notification.idl
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
commita5fdebc5f6375078ec1763850a4ca23ec7fe6458 (patch)
treebcf0a25c3d45a209a6e3ac37b233a4812f29c732 /apps/Orbix-Examples/Event_Comm/libsrc/Notification.idl
downloadATCD-a5fdebc5f6375078ec1763850a4ca23ec7fe6458.tar.gz
Initial revision
Diffstat (limited to 'apps/Orbix-Examples/Event_Comm/libsrc/Notification.idl')
-rw-r--r--apps/Orbix-Examples/Event_Comm/libsrc/Notification.idl42
1 files changed, 42 insertions, 0 deletions
diff --git a/apps/Orbix-Examples/Event_Comm/libsrc/Notification.idl b/apps/Orbix-Examples/Event_Comm/libsrc/Notification.idl
new file mode 100644
index 00000000000..ecfd5adb8e0
--- /dev/null
+++ b/apps/Orbix-Examples/Event_Comm/libsrc/Notification.idl
@@ -0,0 +1,42 @@
+/* -*- C++ -*- */
+// @(#)Notification.idl 1.1 10/18/96
+
+
+// ============================================================================
+//
+// = LIBRARY
+// EventComm
+//
+// = FILENAME
+// Notification.idl
+//
+// = DESCRIPTION
+// This is the CORBA IDL interface for the Event Communication <Notification>.
+//
+// = AUTHOR
+// Douglas C. Schmidt (schmidt@cs.wustl.edu)
+//
+// ============================================================================
+
+#ifndef _NOTIFICATION_IDL
+#define _NOTIFICATION_IDL
+
+struct Notification
+ // = TITLE
+ // Defines the interface for an event <Notification>.
+ //
+ // = This is the type passed by the Notifier to the Notification_Receiver.
+ // Since it contains an <any>, it can hold any values. Naturally,
+ // the consumer must understand how to interpret this!
+{
+ string tag_;
+ // Tag for the notification.
+
+// any value_;
+ // A notification can contain anything.
+
+ Object object_ref_;
+ // Object reference for callbacks.
+};
+
+#endif /* _NOTIFICATION_IDL */