summaryrefslogtreecommitdiff
path: root/modules/CIAO/examples/DevGuideExamples/Messenger/Message.idl
blob: 2e3aee687b075661f387335d97e5e14a3de2a466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// $Id$

/**
 *  @file Message.idl
 *
 *  @author Don Busch <busch_d@ociweb.com>
 */

#ifndef MESSAGE_IDL
#define MESSAGE_IDL

#include <Components.idl>

eventtype Message {
  public string subject;
  public string user;
  public string text;
};
typedef sequence<Message> Messages;
    
#endif