pool raw access changed reverted

This commit is contained in:
Robin Müller 2019-12-11 23:18:28 +01:00
parent 625f3dc79c
commit fa6cbe7e0c
2 changed files with 0 additions and 12 deletions

View File

@ -4,9 +4,6 @@
#include <framework/serviceinterface/ServiceInterfaceStream.h>
#include <framework/osal/Endiness.h>
//PoolRawAccess::PoolRawAccess() {
//}
PoolRawAccess::PoolRawAccess(uint32_t set_id, uint8_t setArrayEntry,
DataSetIF* data_set, ReadWriteMode_t setReadWriteMode,
bool registerVectors) :
@ -16,14 +13,6 @@ PoolRawAccess::PoolRawAccess(uint32_t set_id, uint8_t setArrayEntry,
if (data_set != NULL) {
data_set->registerVariable(this);
}
// if(registerVectors == true) {
// this->read();
// if(arrayEntry < arraySize - 1) {
// uint8_t nextArrayEntry = arrayEntry + 1;
// nextPoolRawAccess = new PoolRawAccess(set_id, nextArrayEntry,
// data_set,setReadWriteMode,true);
// }
// }
}
PoolRawAccess::~PoolRawAccess() {

View File

@ -50,7 +50,6 @@ private:
* \brief The information whether the class is read-write or read-only is stored here.
*/
ReadWriteMode_t readWriteMode;
//PoolRawAccess * nextPoolRawAccess;
static const uint8_t RAW_MAX_SIZE = sizeof(double);
protected:
/**