#include "StatList.hpp" template StatList::StatList() { this->updateModificationTime(); } template void StatList::push_back(const T &value) { std::list::push_back(value); this->updateModificationTime(); } template void StatList::pop_back() { std::list::pop_back(); this->updateModificationTime(); } template std::chrono::time_point StatList::getModificationTime() const { return this->modificationTime; } template void StatList::updateModificationTime() { this->modificationTime = std::chrono::high_resolution_clock::now(); }