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