Goby3 3.2.3
2025.05.13
Loading...
Searching...
No Matches
pGobyMOOSAppTemplate_config.proto
Go to the documentation of this file.
1syntax = "proto2";
2import "goby/moos/protobuf/goby_moos_app.proto";
3import "goby/protobuf/option_extensions.proto";
4
5package goby.apps.moos.protobuf;
6
7message GobyMOOSAppTemplateConfig
8{
9 optional goby.moos.protobuf.GobyMOOSAppConfig common = 1 [
10 (goby.field).description =
11 "Configuration common to all Goby MOOS applications"
12 ]; // see goby_moos_app.proto
13
14 optional int32 config_a = 2
15 [(goby.field).description = "Example integer config parameter"];
16 optional double config_b = 3
17 [(goby.field).description = "Example double config parameter"];
18}