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

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

#ifndef HISTORY_IDL
#define HISTORY_IDL

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

#endif