summaryrefslogtreecommitdiff
path: root/CIAO/examples/DevGuideExamples/Messenger/History.idl
blob: 4853cbc863f3213a9d7e535bac1d8c9054f78f73 (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