Files correlati : Commento : Aggiunti ttools e tsdb dalla versione 13 alla 12 con il wrapper SSimpleQuery git-svn-id: svn://10.65.10.50/branches/R_10_00@24362 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <ttools.h>
 | |
| 
 | |
| 
 | |
| std::string toString(long int n)
 | |
| {
 | |
| #if __cplusplus < 201103
 | |
| 	std::stringstream elPollo;
 | |
| 	elPollo << n;
 | |
| 	return elPollo.str();
 | |
| #else
 | |
| 	return std::to_string(n);
 | |
| #endif // __cplusplus < 201103
 | |
| }
 |