1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 00:39:59 +00:00
OpenMW/components/misc/fileops.hpp

19 lines
268 B
C++
Raw Normal View History

#ifndef MISC_FILEOPS_H
#define MISC_FILEOPS_H
2010-06-03 19:51:59 +00:00
#include <string>
namespace Misc
{
2010-06-03 19:51:59 +00:00
/// Check if a given path is an existing file (not a directory)
bool isFile(const char *name);
#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
std::string macBundlePath();
#endif
}
2010-06-03 19:51:59 +00:00
#endif