mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
f5ccef1751
The extended tests cover more AUTOMOC use cases.
16 lines
198 B
Plaintext
16 lines
198 B
Plaintext
#ifndef SOBJB_HPP
|
|
#define SOBJB_HPP
|
|
|
|
#include <QObject>
|
|
|
|
// Object source includes externally generated .moc file
|
|
class SObjB : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SObjB();
|
|
~SObjB();
|
|
};
|
|
|
|
#endif
|