12 lines
222 B
C++
12 lines
222 B
C++
#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
|