#include <cstring>#include <ZoneCopy.hpp>

Go to the source code of this file.
Defines | |
| #define | CONST_ZONE_COPY(T) |
| #define | ZONE_COPY(T) |
Functions | |
| CONST_ZONE_COPY (real_t) | |
| ZONE_COPY (real_t) | |
| CONST_ZONE_COPY (int) | |
| ZONE_COPY (int) | |
| #define CONST_ZONE_COPY | ( | T | ) |
Value:
inline void ZoneCopy(T* const destination, \ const T* const source, \ size_t size) \ { \ std::memcpy(static_cast<void*>(destination), \ static_cast<const void*>(source), \ size*sizeof(T)); \ }
Definition at line 24 of file ZoneCopy.cpp.
| #define ZONE_COPY | ( | T | ) |
Value:
inline void ZoneCopy(T* const destination, \ T* const source, \ size_t size) \ { \ std::memcpy(static_cast<void*>(destination), \ static_cast<void*>(source), \ size*sizeof(T)); \ }
Definition at line 34 of file ZoneCopy.cpp.
| CONST_ZONE_COPY | ( | int | ) |
| CONST_ZONE_COPY | ( | real_t | ) |
| ZONE_COPY | ( | int | ) |
| ZONE_COPY | ( | real_t | ) |
1.5.6