Files
CMake/Tests/QtAutogen/MocOnly/IncB.cpp
2018-01-18 18:38:45 +01:00

20 lines
273 B
C++

#include "IncB.hpp"
/// @brief Source local QObject
///
class IncBPrivate : public QObject
{
Q_OBJECT
public:
IncBPrivate(){};
};
IncB::IncB()
{
IncBPrivate priv;
}
/// AUTOMOC moc_ include on the last line of the file!
#include "IncB.moc"
#include "moc_IncB.cpp"