Move misc files back to components

This commit is contained in:
athile 2010-06-28 12:40:39 -07:00
parent 67f89f27a2
commit 97feee6cb6
17 changed files with 102 additions and 114 deletions

View file

@ -0,0 +1,8 @@
#include "fileops.hpp"
#include <boost/filesystem.hpp>
bool isFile(const char *name)
{
boost::filesystem::path cfg_file_path(name);
return boost::filesystem::exists(cfg_file_path);
}