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.
21 lines
298 B
21 lines
298 B
7 years ago
|
#ifndef OBJECT2ALIASED_HPP
|
||
|
#define OBJECT2ALIASED_HPP
|
||
|
|
||
|
#include "CustomMacros.hpp"
|
||
|
|
||
|
// Test Qt object macro hidden in a macro (AUTOMOC_MACRO_NAMES)
|
||
|
class Object2Aliased : public QObject
|
||
|
{
|
||
|
QO2_ALIAS
|
||
|
public:
|
||
|
Object2Aliased();
|
||
|
|
||
|
signals:
|
||
|
void aSignal();
|
||
|
|
||
|
public slots:
|
||
|
void aSlot();
|
||
|
};
|
||
|
|
||
|
#endif
|