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
No related tags found
No related merge requests found
......@@ -109,7 +109,6 @@ namespace ChimeraTK {
: ArrayAccessor<UserType>(
owner, name, {VariableDirection::consuming, false}, unit, nElements, UpdateMode::poll, description, tags) {}
ArrayPollInput() : ArrayAccessor<UserType>() {}
void doReadTransfer() { this->doReadTransferLatest(); }
void read() { this->readLatest(); }
using ArrayAccessor<UserType>::operator=;
};
......
......@@ -104,8 +104,6 @@ namespace ChimeraTK {
: ScalarAccessor<UserType>(
owner, name, {VariableDirection::consuming, false}, unit, UpdateMode::poll, description, tags) {}
ScalarPollInput() : ScalarAccessor<UserType>() {}
void doReadTransfer() { this->doReadTransferLatest(); }
void read() { this->readLatest(); }
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