EHS/include/ehs/system/BaseSystem.h
Karutoh bce48fe121
All checks were successful
Build & Release / Windows-AMD64-Build (push) Successful in 6m9s
Build & Release / Linux-AMD64-Build (push) Successful in 15m26s
Build & Release / Linux-AARCH64-Build (push) Successful in 45m54s
Fixed "System::OpenURI". Added SHA256. Added URI safe Base64 methods.
2025-05-11 19:43:50 -07:00

17 lines
273 B
C++

#pragma once
#include "ehs/EHS.h"
#include "ehs/Str.h"
namespace ehs
{
class EHS_LIB_IO BaseSystem
{
public:
static void OpenURI(Str_8 uri);
static Str_8 OpenFileDialog(const Str_8 &dir, const Str_8 &filters);
static Str_8 GetDirDialog(const Str_8 &dir);
};
}