ofen/include/of_str.h

20 lines
389 B
C++

#ifndef OFEN_STRING_HEADER
#define OFEN_STRING_HEADER
#include "of_def.hpp"
#include <vector>
namespace ofen {
class COfStr
{
public:
COfStr();
~COfStr();
public:
static ofString replace(const ofString& str, const ofString& from, const ofString& to);
static std::vector<ofString> split(const ofString& input, const ofString& delimiter);
};
}; // namespace ofen
#endif