summaryrefslogtreecommitdiff
path: root/src/test/leaf.fidl
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/leaf.fidl')
-rw-r--r--src/test/leaf.fidl26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/leaf.fidl b/src/test/leaf.fidl
new file mode 100644
index 0000000..3cb907e
--- /dev/null
+++ b/src/test/leaf.fidl
@@ -0,0 +1,26 @@
+/* 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/. */
+package commonapi.tests.managed
+
+interface LeafInterface {
+ version { major 1 minor 0 }
+
+
+ method testLeafMethod {
+ in {
+ Int32 inInt
+ String inString
+ }
+ out {
+ Int32 outInt
+ String outString
+ }
+ error {
+ OK
+ NOTOK
+ }
+ }
+
+}
+