GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
Recreator.cpp
Go to the documentation of this file.
1#include "Recreator.h"
2
3using namespace std;
4
5namespace gui_framework
6{
7 Recreator::Recreator(const filesystem::path& pathToJSON) :
8 windowedApplicationStructure(ifstream(pathToJSON))
9 {
10
11 }
12
13 Recreator::Recreator(const string& json) :
14 windowedApplicationStructure(json)
15 {
16
17 }
18}
Recreator(const std::filesystem::path &pathToJSON)