2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2011-10-22 21:38:39 +04:00
|
|
|
#ifndef FOO_H
|
|
|
|
#define FOO_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2013-11-04 13:51:37 +04:00
|
|
|
class Foo
|
|
|
|
#ifdef FOO
|
2016-05-16 17:34:04 +03:00
|
|
|
: public QObject
|
2013-11-04 13:51:37 +04:00
|
|
|
#endif
|
2011-10-22 21:38:39 +04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2016-05-16 17:34:04 +03:00
|
|
|
public:
|
|
|
|
Foo();
|
|
|
|
public slots:
|
|
|
|
void doFoo();
|
2011-10-22 21:38:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|