mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 06:09:14 -05:00
f5ccef1751
The extended tests cover more AUTOMOC use cases.
13 lines
141 B
C++
13 lines
141 B
C++
#ifndef OBJA_P_HPP
|
|
#define OBJA_P_HPP
|
|
|
|
class ObjAPrivate : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ObjAPrivate();
|
|
~ObjAPrivate();
|
|
};
|
|
|
|
#endif
|