| 7 | #include <cstring> |
| 8 | |
| 9 | PricesContainer::PricesContainer(char* source) { |
| 10 | strncpy(this->source, source, 4); |
| 11 | } |
| 12 | |
| 13 | void PricesContainer::setup(uint8_t resolutionInMinutes, uint8_t numberOfPoints, bool differentExportPrices) { |
| 14 | this->resolutionInMinutes = resolutionInMinutes; |
nothing calls this directly
no outgoing calls
no test coverage detected