mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 06:30:20 -06:00
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
22 lines
167 B
C++
22 lines
167 B
C++
#include "Obj.hpp"
|
|
|
|
#include "Obj_p.h"
|
|
|
|
ObjPrivate::ObjPrivate()
|
|
{
|
|
}
|
|
|
|
ObjPrivate::~ObjPrivate()
|
|
{
|
|
}
|
|
|
|
Obj::Obj()
|
|
: d(new ObjPrivate)
|
|
{
|
|
}
|
|
|
|
Obj::~Obj()
|
|
{
|
|
delete d;
|
|
}
|