19 lines
261 B
C++
19 lines
261 B
C++
#include "ehs/system/BaseSystem.h"
|
|
|
|
namespace ehs
|
|
{
|
|
void BaseSystem::OpenURI(Str_8 uri)
|
|
{
|
|
}
|
|
|
|
Str_8 BaseSystem::OpenFileDialog(const Str_8 &dir, const Str_8 &filters)
|
|
{
|
|
return {};
|
|
}
|
|
|
|
Str_8 BaseSystem::GetDirDialog(const Str_8 &dir)
|
|
{
|
|
return {};
|
|
}
|
|
}
|