17 lines
187 B
Protocol Buffer
17 lines
187 B
Protocol Buffer
![]() |
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
import "header.proto";
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface Test
|
||
|
/// \brief A test message
|
||
|
|
||
|
|
||
|
message Test
|
||
|
{
|
||
|
required Header header = 1;
|
||
|
}
|
||
|
|
||
|
|