From 98bb676a28ff63d4ddae0716de7d544b62499a14 Mon Sep 17 00:00:00 2001 From: Igor Chudov Date: Thu, 21 May 2020 17:58:53 +0400 Subject: [PATCH] ad_interface: Fix for missing QObject include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit fixes the following error which cannot be identified when using qmake because of its special precompiled headers: ``` /mnt/sda1/github.com/adtool/src/ad_interface.h:28:35: error: expected class-name before ‘{’ token class AdInterface: public QObject { ``` --- src/ad_interface.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ad_interface.h b/src/ad_interface.h index bf86b511..6322e2b1 100644 --- a/src/ad_interface.h +++ b/src/ad_interface.h @@ -2,6 +2,7 @@ #ifndef AD_INTERFACE_H #define AD_INTERFACE_H +#include #include #include #include