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