mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-16 03:32:18 -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.
24 lines
311 B
C++
24 lines
311 B
C++
#include "OwnUnderscore.hpp"
|
|
|
|
#include "OwnUnderscore_p.h"
|
|
|
|
OwnUnderscorePrivate::OwnUnderscorePrivate()
|
|
{
|
|
}
|
|
|
|
OwnUnderscorePrivate::~OwnUnderscorePrivate()
|
|
{
|
|
}
|
|
|
|
OwnUnderscore::OwnUnderscore()
|
|
: d(new OwnUnderscorePrivate)
|
|
{
|
|
}
|
|
|
|
OwnUnderscore::~OwnUnderscore()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
#include "moc_OwnUnderscore.cpp"
|