#include "HistoryEntry.h"

HistoryEntry::HistoryEntry() {}

void HistoryEntry::set_entryValue(float entryValue) {
  this->entryValue = entryValue;
}

float HistoryEntry::get_entryValue() { return entryValue; }
