Sha256: a471ca2be021b3a44e1f3faae1cc57c712884f6924ee2ac3d725ead0b401dfd5
Contents?: true
Size: 359 Bytes
Versions: 25
Compression:
Stored size: 359 Bytes
Contents
#ifndef _RHOTOKENIZER_H_ #define _RHOTOKENIZER_H_ #include "RhoStd.h" namespace rho{ namespace common{ class CTokenizer { String m_str; String m_delims; int m_length; int m_position; public: CTokenizer(String str,String delims); String nextToken(); boolean hasMoreTokens(); private: void eatDelimeters(); }; } } #endif //_RHOCONF_H_
Version data entries
25 entries across 25 versions & 1 rubygems