refactoring

This commit is contained in:
georgemoralis 2023-08-04 11:33:00 +03:00
parent 8b78cc1dec
commit 1e57ccc6ec
4 changed files with 6 additions and 3 deletions

9
src/Util/string_util.h Normal file
View file

@ -0,0 +1,9 @@
#pragma once
#include <vector>
#include <string>
namespace StringUtil {
std::vector<std::string> split_string(const std::string& str, char delimiter);
}