mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
f5ccef1751
The extended tests cover more AUTOMOC use cases.
20 lines
251 B
C++
20 lines
251 B
C++
#ifndef EOBJA_HPP
|
|
#define EOBJA_HPP
|
|
|
|
#include <QObject>
|
|
|
|
// Sources includes a moc_ includes of an extra object
|
|
class EObjAPrivate;
|
|
class EObjA : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
EObjA();
|
|
~EObjA();
|
|
|
|
private:
|
|
EObjAPrivate* const d;
|
|
};
|
|
|
|
#endif
|