#include "Utils.h" bool Utils::file_exists(const char *filename) { ifstream file(filename); return file.good(); }