mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:19:55 +00:00
a724de2429
Also updated based on feedback from athile: Fix broken Linux elif. Use boost:filesystem instead of mkdir for increased future portability. Break appart class definition and implementation.
21 lines
389 B
C++
21 lines
389 B
C++
#ifndef PATH__HPP
|
|
#define PATH__HPP
|
|
|
|
#include <OgrePlatform.h>
|
|
#include <string>
|
|
|
|
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
|