Skip to content
Snippets Groups Projects
Commit 953879c5 authored by t.knopff's avatar t.knopff
Browse files

Small correction singleton interface

parent dd028b64
No related branches found
No related tags found
1 merge request!98Reorg dirs: disentangle Models from mainwindow
......@@ -26,15 +26,14 @@ public:
return m_instance;
}
protected:
ISingleton() = default;
~ISingleton() = default;
private:
ISingleton(const ISingleton&) = delete;
ISingleton& operator=(const ISingleton&) = delete;
ISingleton(ISingleton&&) = delete;
ISingleton& operator=(ISingleton&&) = delete;
protected:
ISingleton() = default;
~ISingleton() = default;
};
#endif // BORNAGAIN_GUI_MAINWINDOW_ISINGLETON_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment