office-gobmx/udkapi/org/libreoffice/embindtest/XTest.idl
Stephan Bergmann 6cc09586f5 Test Embind'ing of UNO enums
Change-Id: I87d55236ee09b80aadcc95e2c0f06f15b9e24a44
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164100
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
2024-02-29 07:54:11 +01:00

75 lines
3 KiB
Text

/* -*- 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 {
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);
Enum getEnum();
boolean isEnum([in] Enum 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<Enum> getSequenceEnum();
boolean isSequenceEnum([in] sequence<Enum> value);
sequence<Struct> getSequenceStruct();
boolean isSequenceStruct([in] sequence<Struct> value);
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */