-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# SPDX-FileCopyrightText: Copyright (c) 2022 MBition GmbH. | ||
# SPDX-License-Identifier: MPL-2.0 | ||
|
||
name: named_service | ||
description: This is it. | ||
major_version: 3 | ||
minor_version: 0 | ||
|
||
namespaces: | ||
- name: first_nested | ||
description: first namespace description | ||
|
||
methods: | ||
- name: another_method | ||
description: this is yet another sample method | ||
input: | ||
- name: arg1 | ||
datatype: variant<string, uint32 > | ||
|
||
structs: | ||
- name: MyStruct | ||
members: | ||
- name: x | ||
datatype: uint32 | ||
- name: y | ||
datatype: string | ||
|
||
typedefs: | ||
- name: MyVariant | ||
description: Test of typedefed variant | ||
datatypes: | ||
- MyStruct | ||
- string | ||
- uint32 | ||
- name: MyVariant2 | ||
description: Test 2 of typedefed variant | ||
datatype: variant<uint32, MyStruct> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
NAME:named_service | ||
DESCRIPTION SHOULD BE HERE: <<--This is it.-->> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
NAME:{{item.name}} | ||
DESCRIPTION SHOULD BE HERE: <<--{{item.description}}-->> |