Files
CMake/Tests/QtAutogen/MocInclude/ObjA.cpp
2017-12-13 13:50:17 +01:00

21 lines
177 B
C++

#include "ObjA.hpp"
#include "ObjA_p.h"
ObjAPrivate::ObjAPrivate()
{
}
ObjAPrivate::~ObjAPrivate()
{
}
ObjA::ObjA()
: d(new ObjAPrivate)
{
}
ObjA::~ObjA()
{
delete d;
}