--- trunk/src/utils/StringTokenizer.hpp 2013/06/16 15:15:42 1879 +++ trunk/src/utils/StringTokenizer.hpp 2014/11/28 20:10:17 2045 @@ -89,7 +89,8 @@ namespace OpenMD { * @note this is still a little bit java like implementation. Pure c++ one should use TokenIterator. * Boost's tokenizer class is one of them */ - StringTokenizer(std::string::const_iterator& first, std::string::const_iterator& last, + StringTokenizer(std::string::const_iterator& first, + std::string::const_iterator& last, const std::string & delim = " ;\t\n\r"); /** @@ -180,6 +181,11 @@ namespace OpenMD { * @return all of the tokens */ std::vector getAllTokens(); + /** + * Returns the remaining unparsed string + * @return the remaining unparsed string + */ + std::string getRemainingString(); private: /**