added missing <memory> header file

This commit is contained in:
Filip Bucek 2019-11-12 16:29:12 +01:00
parent 493d82896b
commit 136ee8300a
2 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,6 @@ QByteArray DatabaseTable::jsonData() const
} }
/** Creates universal variant structure to hold key / value pairs */ /** Creates universal variant structure to hold key / value pairs */
QVariantMap DatabaseTable::toVariantMap() const QVariantMap DatabaseTable::toVariantMap() const
{ {

View File

@ -3,6 +3,8 @@
#include <QObject> #include <QObject>
#include <QVariantMap> #include <QVariantMap>
#include <memory>
// Default TABLE_PROPERTY // Default TABLE_PROPERTY
#define TABLE_PROPERTY(TYPE, NAME, SETNAME, INITVAL) \ #define TABLE_PROPERTY(TYPE, NAME, SETNAME, INITVAL) \