#ifndef HISTORYENTRY_HEADERFILE
#define HISTORYENTRY_HEADERFILE

//TODO: save also time stamp or something similar
class HistoryEntry {

	private:
		float entryValue;

	public:
		HistoryEntry();

		void set_entryValue(float entryValue);
		float get_entryValue();

};


#endif