forked from mirror/openmw-tes3mp
adjusted components/files namespace; some related cleanup
parent
7131c08ca4
commit
bdfd28f44d
@ -1,25 +1,17 @@
|
|||||||
#ifndef PATH__HPP
|
#ifndef COMPONENTS_FILES_PATH_HPP
|
||||||
#define PATH__HPP
|
#define COMPONENTS_FILES_PATH_HPP
|
||||||
|
|
||||||
#include <OgrePlatform.h>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
|
namespace Files
|
||||||
#include <OSX/macUtils.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace OMW
|
|
||||||
{
|
{
|
||||||
class Path
|
enum PathTypeEnum
|
||||||
{
|
{
|
||||||
public:
|
Path_ConfigUser,
|
||||||
enum PathTypeEnum
|
Path_ConfigGlobal
|
||||||
{
|
|
||||||
USER_CFG_PATH,
|
|
||||||
GLOBAL_CFG_PATH
|
|
||||||
};
|
|
||||||
|
|
||||||
static std::string getPath(PathTypeEnum parType, const std::string parApp, const std::string parFile);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
std::string getPath (PathTypeEnum parType, const std::string parApp, const std::string parFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue