Changeset 4220 in orxonox.OLD for orxonox/trunk/src/lib/util/substring.h
- Timestamp:
 - May 18, 2005, 11:01:59 PM (20 years ago)
 - File:
 - 
          
- 1 edited
 
- 
          orxonox/trunk/src/lib/util/substring.h (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
orxonox/trunk/src/lib/util/substring.h
r4010 r4220 1 1 /*! 2 \file substring.h3 \brief a small class to get the parts of a string separated by commas2 \file substring.h 3 \brief a small class to get the parts of a string separated by commas 4 4 */ 5 5 … … 7 7 #define _SUBSTRING_H 8 8 9 #include "stdincl.h"10 11 9 class SubString 12 10 { 13 public:11 public: 14 12 15 SubString( const char* string);16 ~SubString();13 SubString( const char* string); 14 ~SubString(); 17 15 18 int getN();19 const char* getString( int i);16 int getCount(); 17 const char* getString( int i); 20 18 21 private:22 char** strings;23 int n;19 private: 20 char** strings; 21 int n; 24 22 }; 25 23  
Note: See TracChangeset
          for help on using the changeset viewer.
      


            






