1 2 3 4 5 6 7 8
#include "buttonChecker.h" long toLong(const string& intString) { long x = 0; istringstream cur(intString); cur >> x; return x; }