22 #ifndef STRINGVECTOR_H 23 #define STRINGVECTOR_H 34 void SetInput(std::string AInput) { fInput = AInput; };
35 void SetDelimiter(std::string ADelimiter) { fDelimiter = ADelimiter; };
40 if (fInput.find_first_of(fDelimiter) == 0)
47 if (fInput.find_last_of(fDelimiter) == fInput.size() - 1)
55 std::string::size_type fStartPos;
56 std::vector<std::string> fStrings;
58 std::string fDelimiter;
60 std::string GetString(
void);
void SetInput(std::string AInput)
void SetDelimiter(std::string ADelimiter)
std::vector< std::string > GetStringVector(void)