13 lines
194 B
Protocol Buffer
13 lines
194 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface GzString_V
|
||
|
/// \brief A message for a vector of string data
|
||
|
|
||
|
|
||
|
message GzString_V
|
||
|
{
|
||
|
repeated string data = 1;
|
||
|
}
|