#include "ProcReader.h" #include "StringUtils.h" #include using namespace std; map GetCpuInfo() { map result; ifstream f; f.open("/proc/cpuinfo"); if (f.is_open()) { while (!f.eof()) { string tmp; string key; string value; getline(f, tmp); if (ParseString(tmp, key, value)) { result[key] = value; } } } f.close(); return result; }