13 lines
340 B
C
13 lines
340 B
C
|
#pragma once
|
||
|
|
||
|
#include <list>
|
||
|
#include <string>
|
||
|
|
||
|
namespace Utils {
|
||
|
std::list<std::string> SplitStringToString(const std::string &s,
|
||
|
const char delimitor);
|
||
|
std::list<int> SplitStringToInt(const std::string &s,
|
||
|
const char delimitor);
|
||
|
|
||
|
} // namespace Utils
|