mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 22:58:41 +00:00
21 lines
298 B
C++
21 lines
298 B
C++
#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
|