common: Move classes to common namespace

This commit is contained in:
GPUCode 2023-11-05 16:56:28 +02:00
parent 996aa9d17a
commit 303f086b14
21 changed files with 190 additions and 199 deletions

View file

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