MCPcopy Create free account
hub / github.com/Profactor/cv-plot / Pimpl

Method Pimpl

CvPlot/inc/CvPlot/Internal/Pimpl.h:15–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13class Pimpl {
14public:
15 Pimpl(Pimpl<T>&& o)
16 : m(std::move(o.m)) {
17 }
18 template<typename ...Args>
19 Pimpl(Args&& ...args)
20 : m(new T(std::forward<Args>(args)...)) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected