Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 17, 2007, 8:59:31 PM (16 years ago)
Author:
nicolasc
Message:

added engineglow particle effect - based of treibwerk
other various changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/misc/Tokenizer.h

    r507 r592  
    1212* Returns the result as a vector<string> object
    1313*
    14 * @autor Nicolas Perrenoud<nicolape@ee.ethz.ch>
     14* @author Nicolas Perrenoud<nicolape@ee.ethz.ch>
    1515*/
    1616
     
    1818{
    1919        vector<std::string> tokens;
    20        
     20
    2121  // Skip delimiters at beginning.
    2222  std::string::size_type lastPos = str.find_first_not_of(delimiters, 0);
     
    3232      // Find next "non-delimiter"
    3333      pos = str.find_first_of(delimiters, lastPos);
    34   }     
    35   return tokens;   
     34  }
     35  return tokens;
    3636}
    3737
Note: See TracChangeset for help on using the changeset viewer.