diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/App.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/App.hpp b/src/gui/App.hpp index d7776896..36800898 100644 --- a/src/gui/App.hpp +++ b/src/gui/App.hpp @@ -77,6 +77,11 @@ class INGEN_API App public: ~App(); + App(const App&) = delete; + App& operator=(const App&) = delete; + App(App&&) = delete; + App& operator=(App&&) = delete; + void error_message(const std::string& str); void attach(const std::shared_ptr<ingen::Interface>& client); |