www.pudn.com > View3D.zip > SA_stralgo.h


#ifndef SA_STRALGO_H 
#define SA_STRALGO_H 
 
#include  
#include  
using namespace std; 
 
class StringAlgo 
{ 
public: 
	static vector split(string input); 
	static string parseInt(int num); 
}; 
 
#endif