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

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

#ifndef HISTORY_IDL
#define HISTORY_IDL

#include "Message.idl"
   
interface History {
  Messages get_all();
  Message get_latest();
};

#endif