Enumerations
enum Environment : uint8_t
| Name | Value | Comments |
|---|---|---|
| PROD | 0 |
The default prod environment. |
| DEVEL | 1 |
The devel environment. |
| LOCAL | 2 |
Capture observations locally for testing purposes. |
The environment that the Cobalt system should talk to.
Defined at line 15 of file ../../third_party/cobalt/src/system_data/configuration_data.h
Records
Functions
-
const char * EnvironmentString (const Environment & environment)Convert the Environment enum to a string (for logging).
-
std::ostream & operator<< (std::ostream & os, Environment environment)Streams EnvironmentString(environment) to `os`.