1
0
mirror of https://github.com/altlinux/admc.git synced 2025-03-22 02:50:30 +03:00

ad_interface: Fix for missing QObject include

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 {
```
This commit is contained in:
Игорь Чудов 2020-05-21 17:58:53 +04:00
parent 0a80ab0ec1
commit 98bb676a28
Signed by untrusted user: nir
GPG Key ID: 0F3883600CAE7AAC

View File

@ -2,6 +2,7 @@
#ifndef AD_INTERFACE_H
#define AD_INTERFACE_H
#include <QObject>
#include <QList>
#include <QString>
#include <QMap>