mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +00:00
90985e849e
Moving classes from components/misc into Misc namespace. Note: Misc namespace introduced conflict with ESM::Misc and MWClass::Misc classes, so both of them are renamed to ESM::Miscellaneous and MWClass::Miscellaneous. Signed-off-by: Lukasz Gromanowski <lgromanowski@gmail.com>
19 lines
268 B
C++
19 lines
268 B
C++
#ifndef MISC_FILEOPS_H
|
|
#define MISC_FILEOPS_H
|
|
|
|
#include <string>
|
|
|
|
namespace Misc
|
|
{
|
|
|
|
/// 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
|
|
|
|
}
|
|
|
|
#endif
|