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.
13 lines
146 B
C++
13 lines
146 B
C++
#ifndef LOBJA_P_HPP
|
|
#define LOBJA_P_HPP
|
|
|
|
class LObjAPrivate : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
LObjAPrivate();
|
|
~LObjAPrivate();
|
|
};
|
|
|
|
#endif
|