Skip to content

Commit

Permalink
Add ROSIDL enum support
Browse files Browse the repository at this point in the history
Signed-off-by: Roman Sokolkov <roman.sokolkov@apex.ai>
  • Loading branch information
Roman Sokolkov committed Jun 24, 2022
1 parent 33b4002 commit 38fc073
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ set(action_files
)

set(idl_files
"idl/EnumsMessage.idl"
# "idl/IdlOnlyTypes.idl"
)

Expand Down
25 changes: 25 additions & 0 deletions idl/EnumsMessage.idl
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module test_msgs {
module idl {
typedef SomeEnum SomeEnum__3[3];

module EnumsMessage_Enums {
enum SomeEnum {
ENUMERATOR1,
ENUMERATOR2
};
};

struct EnumsMessage {
SomeEnum enum_value;

@default (value="ENUMERATOR2")
SomeEnum enum_default_value;

SomeEnum__3 static_array_values;

sequence<SomeEnum, 3> bounded_array_values;

sequence<SomeEnum> dynamic_array_values;
};
};
};

0 comments on commit 38fc073

Please sign in to comment.