Skip to content
Snippets Groups Projects
Commit 42424bdd authored by Mike Kremer's avatar Mike Kremer
Browse files

Added virtual destructors to avoid compiler warnings

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@4737 383ad7c9-94d9-4d36-a494-682f7c89f535
parent 5b69f61d
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,11 @@
*/
class LoadSaveInterface {
public:
/// Destructor
virtual ~LoadSaveInterface() {};
signals :
/** Tries to load the file as a given type
*
......
......@@ -48,6 +48,11 @@
*/
class RPCInterface {
public:
/// Destructor
virtual ~RPCInterface() {};
signals :
/** Check if the plugin exists in the current Environment \n
......
......@@ -52,6 +52,10 @@
*/
class ScriptInterface {
public:
/// Destructor
virtual ~ScriptInterface() {};
signals :
/** \brief Emit this signal if a scriptable function is executed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment