#pragma once #include #include #include #include // some basic helper methods for the examples template float getTime_ms(const T & tStart, const T & tEnd) { return ((float)(std::chrono::duration_cast(tEnd - tStart).count()))/1000.0; } std::vector readFile(const char* filename); std::string getBinaryPath(); std::map parseCmdArguments(int argc, char ** argv);