Goby3  3.1.5a
2024.05.23
pGobyMOOSAppTemplate_config.proto
Go to the documentation of this file.
1 syntax = "proto2";
2 import "goby/moos/protobuf/goby_moos_app.proto";
3 import "goby/protobuf/option_extensions.proto";
4 
5 package goby.apps.moos.protobuf;
6 
7 message 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 }