Moved FileDialog into its own class

This commit is contained in:
Antoine Pilote
2024-09-04 00:14:00 -04:00
parent c91812c65e
commit 87f58d890e
22 changed files with 452 additions and 415 deletions

View File

@@ -1,11 +1,5 @@
#pragma once
#include "src/Core/Core.h"
#include "String.h"
#include <string>
#include <filesystem>
#include <iostream>
#include <fstream>
namespace filewatch
{
@@ -15,14 +9,6 @@ namespace filewatch
namespace Nuake
{
class FileDialog
{
public:
static std::string OpenFile(const char* filter);
static std::string SaveFile(const char* filter);
static std::string OpenFolder();
};
class Directory;
class File;