mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
21 lines
166 B
C++
21 lines
166 B
C++
#include "Obj.hpp"
|
|
#include "Obj_p.h"
|
|
|
|
ObjPrivate::ObjPrivate()
|
|
{
|
|
}
|
|
|
|
ObjPrivate::~ObjPrivate()
|
|
{
|
|
}
|
|
|
|
Obj::Obj()
|
|
: d(new ObjPrivate)
|
|
{
|
|
}
|
|
|
|
Obj::~Obj()
|
|
{
|
|
delete d;
|
|
}
|