mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-24 09:09:43 -05:00
f5ccef1751
The extended tests cover more AUTOMOC use cases.
16 lines
198 B
C++
16 lines
198 B
C++
#ifndef SOBJC_HPP
|
|
#define SOBJC_HPP
|
|
|
|
#include <QObject>
|
|
|
|
// Object source includes externally generated .moc file
|
|
class SObjC : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SObjC();
|
|
~SObjC();
|
|
};
|
|
|
|
#endif
|