let INetwork have a QObject parent

refs #81
This commit is contained in:
Klaus Basan
2013-12-15 21:46:47 +00:00
committed by Mathew Sutcliffe
parent 535ea65a9a
commit 8d15f307c2
3 changed files with 11 additions and 3 deletions

View File

@@ -36,6 +36,13 @@ namespace BlackCore
{
Q_OBJECT
protected:
/*!
* \brief Constructor
* \param parent
*/
INetwork(QObject *parent = nullptr) : QObject(parent) {}
public:
virtual ~INetwork() {}