* @brief Base Field Interface class */
| 35 | * @brief Base Field Interface class |
| 36 | */ |
| 37 | struct Base |
| 38 | { |
| 39 | std::string label; |
| 40 | |
| 41 | Base(const std::string &label) : |
| 42 | label{label} |
| 43 | {} |
| 44 | |
| 45 | virtual ~Base() = default; |
| 46 | |
| 47 | virtual const std::string to_string() = 0; |
| 48 | }; |
| 49 | |
| 50 | /** |
| 51 | * @brief Static Field Implementation |
nothing calls this directly
no outgoing calls
no test coverage detected