Add missing #include <functional>

This commit is contained in:
Martchus 2017-05-30 15:07:34 +02:00
parent 0599eb354d
commit 37dc2f722f
2 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,7 @@ set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}")
set(META_APP_DESCRIPTION "Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models")
set(META_VERSION_MAJOR 5)
set(META_VERSION_MINOR 7)
set(META_VERSION_PATCH 0)
set(META_VERSION_PATCH 1)
set(META_APP_VERSION ${META_VERSION_MAJOR}.${META_VERSION_MINOR}.${META_VERSION_PATCH})
# add project files

View File

@ -16,6 +16,7 @@
#include <QContextMenuEvent>
#endif
#include <functional>
#include <memory>
using namespace std;