15 lines
180 B
Protocol Buffer
15 lines
180 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface GzString
|
||
|
/// \brief A message for string data
|
||
|
|
||
|
|
||
|
message GzString
|
||
|
{
|
||
|
required string data = 1;
|
||
|
}
|
||
|
|
||
|
|