Skip to content
Snippets Groups Projects
Commit 4d3bd543 authored by Christoph Kampmeyer's avatar Christoph Kampmeyer
Browse files

ScalarPollInput and ArrayPollInput: Removed doReadTransfer, which does not...

ScalarPollInput and ArrayPollInput: Removed doReadTransfer, which does not make sense in the interface
parent 9d8df705
No related branches found
Tags 01.10.00
No related merge requests found
...@@ -109,7 +109,6 @@ namespace ChimeraTK { ...@@ -109,7 +109,6 @@ namespace ChimeraTK {
: ArrayAccessor<UserType>( : ArrayAccessor<UserType>(
owner, name, {VariableDirection::consuming, false}, unit, nElements, UpdateMode::poll, description, tags) {} owner, name, {VariableDirection::consuming, false}, unit, nElements, UpdateMode::poll, description, tags) {}
ArrayPollInput() : ArrayAccessor<UserType>() {} ArrayPollInput() : ArrayAccessor<UserType>() {}
void doReadTransfer() { this->doReadTransferLatest(); }
void read() { this->readLatest(); } void read() { this->readLatest(); }
using ArrayAccessor<UserType>::operator=; using ArrayAccessor<UserType>::operator=;
}; };
......
...@@ -104,8 +104,6 @@ namespace ChimeraTK { ...@@ -104,8 +104,6 @@ namespace ChimeraTK {
: ScalarAccessor<UserType>( : ScalarAccessor<UserType>(
owner, name, {VariableDirection::consuming, false}, unit, UpdateMode::poll, description, tags) {} owner, name, {VariableDirection::consuming, false}, unit, UpdateMode::poll, description, tags) {}
ScalarPollInput() : ScalarAccessor<UserType>() {} ScalarPollInput() : ScalarAccessor<UserType>() {}
void doReadTransfer() { this->doReadTransferLatest(); }
void read() { this->readLatest(); }
using ScalarAccessor<UserType>::operator=; using ScalarAccessor<UserType>::operator=;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment