Default constructor: empty array */
| 43 | public: |
| 44 | /** Default constructor: empty array */ |
| 45 | CLArray() : ICLArray<T>(0), _buffer() |
| 46 | { |
| 47 | } |
| 48 | /** Prevent instances of this class from being copied (As this class contains pointers) */ |
| 49 | CLArray(const CLArray &) = delete; |
| 50 | /** Prevent instances of this class from being copied (As this class contains pointers) */ |