Implementation of the storage concept for slices of C arrays.
More...
#include <slice.hpp>
|
| PtrSliceStorage (storage_type ptr, size_t, size_t) |
|
value_type & | unsafeAt (size_t index) throw () |
|
const value_type & | unsafeAt (size_t index) const throw () |
|
iterator | unsafeGetIteratorAt (size_t index) throw () |
|
const_iterator | unsafeGetIteratorAt (size_t index) const throw () |
|
|
const typedef value_type * | const_iterator |
|
storage_type | data_ |
|
template<typename storage_type>
struct Exiv2::Internal::PtrSliceStorage< storage_type >
Implementation of the storage concept for slices of C arrays.
- Template Parameters
-
storage_type | Type as which the C-array should be stored. Use this parameter to save constant arrays as const and mutable ones as non-const . |
◆ PtrSliceStorage()
template<typename storage_type >
Stores ptr and checks that it is not NULL
. The slice's bounds are ignored, as we do not know the array's length.
- Exceptions
-
std::invalid_argument | when ptr is NULL |
◆ unsafeAt()
template<typename storage_type >
Obtain a reference to the element with the given index
in the array.
- Exceptions
-
◆ unsafeGetIteratorAt()
template<typename storage_type >
Obtain an iterator (=pointer) at the position of the element with the given index in the container.
- Exceptions
-
The documentation for this struct was generated from the following file: