#include <image_with_type.hh>
Inheritance diagram for oln::abstract::image_with_type< T, Exact >:
Public Types | |
typedef image< Exact > | super_type |
typedef image_with_type< T, Exact > | self_type |
typedef Exact | exact_type |
Public Member Functions | |
exact_type & | operator= (self_type rhs) |
Shallow copy from rhs to the current image, the points will not be duplicated but shared between the two images. | |
Static Public Member Functions | |
static std::string | name () |
Definition at line 71 of file image_with_type.hh.
typedef image<Exact> oln::abstract::image_with_type< T, Exact >::super_type |
The base class whom derives image_with_type.
Definition at line 75 of file image_with_type.hh.
exact_type& oln::abstract::image_with_type< T, Exact >::operator= | ( | self_type | rhs | ) | [inline] |
Shallow copy from rhs to the current image, the points will not be duplicated but shared between the two images.
Reimplemented from oln::abstract::image< Exact >.
Reimplemented in oln::abstract::data_type_image< Exact >, oln::abstract::data_type_image_with_dim< Dim, Exact >, oln::abstract::vectorial_image< Exact >, oln::abstract::vectorial_image_with_dim< Dim, Exact >, oln::abstract::non_vectorial_image< Exact >, oln::abstract::non_vectorial_image_with_dim< Dim, Exact >, oln::abstract::binary_image< Exact >, oln::abstract::binary_image_with_dim< Dim, Exact >, oln::abstract::integer_image< Exact >, oln::abstract::integer_image_with_dim< Dim, Exact >, oln::abstract::decimal_image< Exact >, and oln::abstract::decimal_image_with_dim< Dim, Exact >.
Definition at line 87 of file image_with_type.hh.
00088 { 00089 return this->exact().assign(rhs.exact()); 00090 }