Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/util/substring.h @ 4734

Last change on this file since 4734 was 4734, checked in by bensch, 19 years ago

orxonox/trunk: light loadable

File size: 560 bytes
Line 
1/*!
2  \file substring.h
3  \brief a small class to get the parts of a string separated by commas
4*/
5
6#ifndef _SUBSTRING_H
7#define _SUBSTRING_H
8
9//! A class that can load one string and split it in multipe ones
10class SubString
11{
12 public:
13  SubString(const char* string, char splitter = ',');
14  ~SubString();
15
16  int getCount();
17  const char* getString( int i);
18
19 private:
20  char**     strings;         //!< strings produced from a single string splitted in multiple strings
21  int        n;               //!< how many splitted parts
22};
23
24#endif /* _SUBSTRING_H */
Note: See TracBrowser for help on using the repository browser.