ModErn Text Analysis
META Enumerates Textual Applications
|
Class to assist in simple pointer-to-implementation classes. More...
#include <pimpl.h>
Public Member Functions | |
pimpl () | |
Constructor. | |
pimpl (pimpl &&) | |
Move constructor. | |
pimpl & | operator= (pimpl &&) |
Move assignment. | |
template<class... Args> | |
pimpl (Args &&...args) | |
Forwarding constructor. More... | |
~pimpl () | |
Destructor. | |
Impl * | operator-> () |
Member access operator. More... | |
const Impl * | operator-> () const |
Member access operator. More... | |
Impl & | operator* () |
Dereference operator. More... | |
const Impl & | operator* () const |
Dereference operator. More... | |
Private Attributes | |
std::unique_ptr< Impl > | impl_ |
The internal pointer to the Impl class. | |
Class to assist in simple pointer-to-implementation classes.
Forwarding constructor.
args | The arguments to forward to the Impl class. |
Impl * meta::util::pimpl< Impl >::operator-> | ( | ) |
Member access operator.
const Impl * meta::util::pimpl< Impl >::operator-> | ( | ) | const |
Member access operator.
Const version.
Impl & meta::util::pimpl< Impl >::operator* | ( | ) |
Dereference operator.
const Impl & meta::util::pimpl< Impl >::operator* | ( | ) | const |
Dereference operator.
Const version.