| 17 | #define OVERFLOWED_IDX -2 |
| 18 | |
| 19 | class ZoneModel { |
| 20 | public: |
| 21 | ZoneModel() {} |
| 22 | |
| 23 | ~ZoneModel() {} |
| 24 | |
| 25 | SensorConfig sensor_config_; |
| 26 | |
| 27 | /* |
| 28 | * Common functions |
| 29 | */ |
| 30 | inline size_t size() const; |
| 31 | // Important! 'virtual' is necessary to be declared in the base class |
| 32 | // + the functions must be declared, i.e. {} is needed |
| 33 | }; |
| 34 | |
| 35 | class ConcentricZoneModel : public ZoneModel { |
| 36 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected