reVeno/Source/Veno/Utils/StringUtils.h

23 lines
329 B
C
Raw Normal View History

2020-07-09 16:31:33 +02:00
//
// Created by Maurice on 08.07.2020.
//
#ifndef VENO_STRINGUTILS_H
#define VENO_STRINGUTILS_H
#include <string>
#include <vector>
namespace VeNo
{
class StringUtils
{
public:
static std::vector<std::string> split (std::string input, std::string separator = " ");
};
}
#endif //VENO_STRINGUTILS_H