~ldd/oowebdict/trunk

« back to all changes in this revision

Viewing changes to ooidl/com/lddubeau/oowebdict/XBasicLexicon.idl

  • Committer: ldd at lddubeau
  • Date: 2011-04-22 23:56:20 UTC
  • mfrom: (3.1.5 oowebdict)
  • Revision ID: ldd@lddubeau.com-20110422235620-kx223tvhknlvx541
Tags: oowebdict-0.4
VersionĀ 0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __com_lddubeau_oowebdict_xbasiclexicon_idl__
 
2
#define __com_lddubeau_oowebdict_xbasiclexicon_idl__
 
3
 
 
4
#include <com/sun/star/lang/XInitialization.idl>
 
5
#include <com/lddubeau/oowebdict/CancelledByUser.idl>
 
6
module com { module lddubeau { module oowebdict {       
 
7
 
 
8
        published interface XBasicLexicon {
 
9
            interface  com::sun::star::lang::XInitialization;
 
10
            boolean exists([in] string term) raises (CancelledByUser);
 
11
            long getLongestTermLength() raises (CancelledByUser);
 
12
            string getTermData([in] string term) raises (CancelledByUser);
 
13
        };
 
14
 
 
15
 }; }; };
 
16
#endif