mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 19:10:20 +01:00
Add missing Path implementations for WINCE
This commit is contained in:
committed by
Guenter Obiltschnig
parent
0a1218cd7e
commit
64710b2ff7
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user