Files
clang-uml/tests/t00018/t00018.cc
2021-07-24 20:14:27 +02:00

23 lines
377 B
C++

#include "t00018.h"
#include "t00018_impl.h"
namespace clanguml {
namespace t00018 {
void widget::draw() const { pImpl->draw(*this); }
void widget::draw() { pImpl->draw(*this); }
widget::widget(int n)
: pImpl{std::make_unique<impl::widget>(n)}
{
}
widget::widget(widget &&) = default;
widget::~widget() = default;
widget &widget::operator=(widget &&) = default;
}
}