Refactoring, FFmpeg updates
This commit is contained in:
12
src/storage.cpp
Normal file
12
src/storage.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "storage.h"
|
||||
|
||||
namespace anm2ed
|
||||
{
|
||||
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());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user