mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
26 lines
464 B
C++
26 lines
464 B
C++
#ifndef PATH__HPP
|
|
#define PATH__HPP
|
|
|
|
#include <OgrePlatform.h>
|
|
#include <string>
|
|
|
|
#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
|
|
#include <OSX/macUtils.h>
|
|
#endif
|
|
|
|
namespace OMW
|
|
{
|
|
class Path
|
|
{
|
|
public:
|
|
enum PathTypeEnum
|
|
{
|
|
USER_CFG_PATH,
|
|
GLOBAL_CFG_PATH
|
|
};
|
|
|
|
static std::string getPath(PathTypeEnum parType, const std::string parApp, const std::string parFile);
|
|
};
|
|
}
|
|
#endif
|