mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-25 01:28:50 -05:00
f5ccef1751
The extended tests cover more AUTOMOC use cases.
21 lines
177 B
C++
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;
|
|
}
|