blob: a0884661b395cdb4e60b6f45bdc996c0b7e0c00f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
module org { module libreoffice { module embindtest {
struct Struct {
long m1;
double m2;
string m3;
};
interface XTest {
boolean getBoolean();
boolean isBoolean([in] boolean value);
byte getByte();
boolean isByte([in] byte value);
short getShort();
boolean isShort([in] short value);
unsigned short getUnsignedShort();
boolean isUnsignedShort([in] unsigned short value);
long getLong();
boolean isLong([in] long value);
unsigned long getUnsignedLong();
boolean isUnsignedLong([in] unsigned long value);
hyper getHyper();
boolean isHyper([in] hyper value);
unsigned hyper getUnsignedHyper();
boolean isUnsignedHyper([in] unsigned hyper value);
float getFloat();
boolean isFloat([in] float value);
double getDouble();
boolean isDouble([in] double value);
char getChar();
boolean isChar([in] char value);
string getString();
boolean isString([in] string value);
Struct getStruct();
boolean isStruct([in] Struct value);
sequence<boolean> getSequenceBoolean();
boolean isSequenceBoolean([in] sequence<boolean> value);
sequence<byte> getSequenceByte();
boolean isSequenceByte([in] sequence<byte> value);
sequence<short> getSequenceShort();
boolean isSequenceShort([in] sequence<short> value);
sequence<unsigned short> getSequenceUnsignedShort();
boolean isSequenceUnsignedShort([in] sequence<unsigned short> value);
sequence<long> getSequenceLong();
boolean isSequenceLong([in] sequence<long> value);
sequence<unsigned long> getSequenceUnsignedLong();
boolean isSequenceUnsignedLong([in] sequence<unsigned long> value);
sequence<hyper> getSequenceHyper();
boolean isSequenceHyper([in] sequence<hyper> value);
sequence<unsigned hyper> getSequenceUnsignedHyper();
boolean isSequenceUnsignedHyper([in] sequence<unsigned hyper> value);
sequence<float> getSequenceFloat();
boolean isSequenceFloat([in] sequence<float> value);
sequence<double> getSequenceDouble();
boolean isSequenceDouble([in] sequence<double> value);
sequence<char> getSequenceChar();
boolean isSequenceChar([in] sequence<char> value);
sequence<string> getSequenceString();
boolean isSequenceString([in] sequence<string> value);
sequence<sequence<string> > getSequenceSequenceString();
boolean isSequenceSequenceString([in] sequence<sequence<string> > value);
sequence<Struct> getSequenceStruct();
boolean isSequenceStruct([in] sequence<Struct> value);
};
singleton Test: XTest;
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|