#include "fileops.hpp" #include #include #include namespace Misc { bool isFile(const char *name) { boost::filesystem::path cfg_file_path(name); return boost::filesystem::exists(cfg_file_path); } }