Files
anm2ed/src/storage.cpp
2025-11-11 11:25:46 -05:00

14 lines
296 B
C++

#include "storage.h"
namespace anm2ed
{
void Storage::clear() { *this = Storage(); }
void Storage::labels_set(std::vector<std::string> labels)
{
labelsString = labels;
this->labels.clear();
for (auto& label : labelsString)
this->labels.emplace_back(label.c_str());
}
}