Add missing Path implementations for WINCE

This commit is contained in:
Pascal Bach 2015-03-11 11:30:10 +01:00
parent 6f0e180430
commit 1b8a7c1664
2 changed files with 36 additions and 9 deletions

View File

@ -31,9 +31,13 @@ class Foundation_API PathImpl
{
public:
static std::string currentImpl();
// Returns the root directory
static std::string homeImpl();
static std::string configHomeImpl();
static std::string dataHomeImpl();
static std::string cacheHomeImpl();
static std::string tempHomeImpl();
static std::string tempImpl();
static std::string configImpl();
static std::string nullImpl();
static std::string systemImpl();
static std::string expandImpl(const std::string& path);

View File

@ -31,12 +31,35 @@ std::string PathImpl::currentImpl()
return("\\");
}
std::string PathImpl::homeImpl()
{
return("\\");
}
std::string PathImpl::configHomeImpl()
{
return homeImpl();
}
std::string PathImpl::dataHomeImpl()
{
return homeImpl();
}
std::string PathImpl::cacheHomeImpl()
{
return homeImpl();
}
std::string PathImpl::tempHomeImpl()
{
return tempImpl();
}
std::string PathImpl::configImpl()
{
return("\\");
}
std::string PathImpl::systemImpl()
{