reorder methods

This commit is contained in:
yggverse 2024-09-06 03:15:18 +03:00
parent 16c42f4491
commit f959a6627b

View File

@ -24,26 +24,6 @@ History::History()
}
// Actions
void History::add(
const Glib::ustring & REQUEST,
const bool & UPDATE_MEMORY_INDEX
) {
memory.push_back(
{
REQUEST,
std::time(
nullptr
),
true
}
);
if (UPDATE_MEMORY_INDEX)
{
index = memory.size() - 1;
}
}
void History::refresh()
{
Memory match;
@ -63,6 +43,25 @@ void History::refresh()
);
}
void History::add(
const Glib::ustring & REQUEST,
const bool & UPDATE_MEMORY_INDEX
) {
memory.push_back(
{
REQUEST,
std::time(
nullptr
),
true
}
);
if (UPDATE_MEMORY_INDEX)
{
index = memory.size() - 1;
}
}
bool History::try_back(
Memory & match,