C++ API Reference for Intel® Data Analytics Acceleration Library 2020 Update 1

List of all members
DataBlockIface Class Referenceabstract

Abstract interface class for a data management component responsible for a pointer to a byte array and its size. This class declares the most general methods for data access. More...

Class Declaration

Member Function Documentation

virtual byte* getPtr ( ) const
pure virtual

Returns a pointer to a byte array stored in DataBlock

Returns
Pointer to the byte array stored in DataBlock

Implemented in DataBlock.

virtual services::SharedPtr<byte> getSharedPtr ( ) const
pure virtual

Returns a pointer to a byte array stored in DataBlock

Returns
Pointer to the byte array stored in DataBlock

Implemented in DataBlock.

virtual size_t getSize ( ) const
pure virtual

Returns the size of a byte array stored in DataBlock

Returns
Size of the byte array stored in DataBlock

Implemented in DataBlock.

virtual void setPtr ( byte *  ptr)
pure virtual

Sets a pointer to a byte array

Parameters
[in]ptrPointer to the byte array

Implemented in DataBlock.

virtual void setPtr ( const services::SharedPtr< byte > &  ptr)
pure virtual

Sets a pointer to a byte array

Parameters
[in]ptrPointer to the byte array

Implemented in DataBlock.

virtual void setSize ( size_t  size)
pure virtual

Sets the size of a byte array

Parameters
[in]sizeSize of the byte array

Implemented in DataBlock.


The documentation for this class was generated from the following file:

For more complete information about compiler optimizations, see our Optimization Notice.