Changeset 4830 in orxonox.OLD for orxonox/trunk/src/lib/util/substring.h
- Timestamp:
- Jul 11, 2005, 5:43:37 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/util/substring.h
r4734 r4830 14 14 ~SubString(); 15 15 16 in t getCount();16 inline int getCount() { return this->splittersCount; }; 17 17 const char* getString( int i); 18 18 19 19 private: 20 char** strings; //!< strings produced from a single string splitted in multiple strings21 int n; //!< how many splitted parts20 char** strings; //!< strings produced from a single string splitted in multiple strings 21 int splittersCount; //!< how many splitted parts 22 22 }; 23 23
Note: See TracChangeset
for help on using the changeset viewer.