#include "buttonChecker.h" long toLong(const string& intString) { long x = 0; istringstream cur(intString); cur >> x; return x; }