www.pudn.com > fanccMSNr.src.rar > User.hpp


#pragma once 
 
#include  
#include  
using namespace std; 
 
namespace poral { 
	/** 
	* Contains user information. 
	*/ 
	class User { 
	public: 
		User(): 
		blocked(false) { 
		}; 
		// These variables are public for now 
		string status; 
		string ID; 
		string screenName; 
		string group; 
		bool blocked; 
	}; 
}