summaryrefslogtreecommitdiff
path: root/tests/auto/core/ivigenerator/org.example.echo.qface
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/core/ivigenerator/org.example.echo.qface')
-rw-r--r--tests/auto/core/ivigenerator/org.example.echo.qface11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/core/ivigenerator/org.example.echo.qface b/tests/auto/core/ivigenerator/org.example.echo.qface
index b44381b..6ea92bc 100644
--- a/tests/auto/core/ivigenerator/org.example.echo.qface
+++ b/tests/auto/core/ivigenerator/org.example.echo.qface
@@ -30,6 +30,7 @@ interface Echo {
list<int> intList;
list<Combo> comboList;
WeekDay weekDay;
+ TestEnum testEnum;
real UPPERCASEPROPERTY;
string echo(string msg);
@@ -37,9 +38,11 @@ interface Echo {
Combo getCombo();
void voidSlot();
void voidSlot2(int param);
+ void timer(int interval);
signal anotherChanged(AnotherStruct another);
signal foobar(string foo);
signal somethingHappened();
+ signal newValueAvailable(var newValue);
}
@config: {id: "org.foo.idz.1.0", zoned: true}
@@ -68,12 +71,15 @@ interface EchoZoned {
Combo combo;
list<int> intList;
list<Combo> comboList;
+ WeekDay weekDay;
+ TestEnum testEnum;
real UPPERCASEPROPERTY;
string echo(string msg);
string id();
var varMethod();
Combo getCombo();
+ string timer(int interval);
signal anotherChanged(AnotherStruct another);
signal foobar(string foo);
@@ -108,6 +114,11 @@ flag WeekDay {
Friday = 5
}
+enum TestEnum {
+ FirstEnumValue = 1,
+ SecondEnumValue = 2
+}
+
/**
* The contact information
*/