From 7f7e6fe30ef4f9ba4507b89174676f57c42c0000 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Sun, 26 Nov 2017 23:36:26 +0100 Subject: Implementation for Structogram iterator and Statement type The interator is not (yet) aware of the scope in which it is iterating. --- src/ui/Window.hpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/ui/Window.hpp (limited to 'src/ui/Window.hpp') diff --git a/src/ui/Window.hpp b/src/ui/Window.hpp new file mode 100644 index 0000000..5afad8c --- /dev/null +++ b/src/ui/Window.hpp @@ -0,0 +1,27 @@ +/* + * Window.hpp + * + * Created on: Nov 26, 2017 + * Author: naopross + */ + +#ifndef SRC_UI_WINDOW_HPP_ +#define SRC_UI_WINDOW_HPP_ + +#include + +namespace samb { + +class Window : public QWidget { +Q_OBJECT +public: + Window(); + virtual ~Window(); + +signals: +public slots: +}; + +} /* namespace samb */ + +#endif /* SRC_UI_WINDOW_HPP_ */ -- cgit v1.2.1