/*! \file substring.h \brief a small class to get the parts of a string separated by commas */ #ifndef _SUBSTRING_H #define _SUBSTRING_H class SubString { public: SubString( const char* string); ~SubString(); int getCount(); const char* getString( int i); private: char** strings; int n; }; #endif /* _SUBSTRING_H */