|
RINGMesh
Version 5.0.0
A programming library for geological model meshes
|
#include <pimpl.h>
Public Member Functions | |
| template<typename... Args> | |
| PImpl (Args &&...) | |
| ~PImpl () | |
| T * | operator-> () |
| const T * | operator-> () const |
| T & | operator* () |
| const T & | operator* () const |
| template<typename... Args> | |
| PImpl (Args &&... args) | |
Private Attributes | |
| std::unique_ptr< T > | impl_ |
| RINGMesh::PImpl< T >::~PImpl | ( | ) |
Definition at line 55 of file pimpl_impl.h.
Definition at line 49 of file pimpl_impl.h.
| T & RINGMesh::PImpl< T >::operator* | ( | ) |
Definition at line 72 of file pimpl_impl.h.
| const T & RINGMesh::PImpl< T >::operator* | ( | ) | const |
Definition at line 78 of file pimpl_impl.h.
| T * RINGMesh::PImpl< T >::operator-> | ( | ) |
Definition at line 66 of file pimpl_impl.h.
| const T * RINGMesh::PImpl< T >::operator-> | ( | ) | const |
Definition at line 60 of file pimpl_impl.h.
|
private |