#ifndef MAPPING_H_ #define MAPPING_H_ #include #include #include #include #include class Mapping { public: std::vector> createMapping(std::vector> rpmSensors, std::vector> pwmControls); private: template void print(std::string listLabel, std::vector> list); }; #endif // MAPPING_H_