Load GUI from XML

This commit is contained in:
2015-03-10 00:48:25 +01:00
parent 9d7dd452c7
commit 884fd8bb52
21 changed files with 1019 additions and 119 deletions

11
GUILoader.hh Normal file
View File

@@ -0,0 +1,11 @@
#ifndef __OPENGLPLAYGROUND_GUILOADER_HH__
#define __OPENGLPLAYGROUND_GUILOADER_HH__
#include <string>
#include <memory>
#include "Widget.hh"
std::unique_ptr<Widget> loadGUIFromFile(std::string const& filename);
#endif