mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 14:50:10 -06:00
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;
|
|
}
|