You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
243 B
20 lines
243 B
5 years ago
|
#ifndef None_HPP
|
||
|
#define None_HPP
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
// Object source comes without any _moc/.moc includes
|
||
|
class NonePrivate;
|
||
|
class None : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
None();
|
||
|
~None();
|
||
|
|
||
|
private:
|
||
|
NonePrivate* const d;
|
||
|
};
|
||
|
|
||
|
#endif
|