34 #ifndef STRINGVECTOR_H 35 #define STRINGVECTOR_H 46 void SetInput(std::string AInput) { fInput = AInput; };
47 void SetDelimiter(std::string ADelimiter) { fDelimiter = ADelimiter; };
52 if (fInput.find_first_of(fDelimiter) == 0)
59 if (fInput.find_last_of(fDelimiter) == fInput.size() - 1)
67 std::string::size_type fStartPos;
68 std::vector<std::string> fStrings;
70 std::string fDelimiter;
72 std::string GetString(
void);
void SetInput(std::string AInput)
void SetDelimiter(std::string ADelimiter)
std::vector< std::string > GetStringVector(void)