00001 #ifndef __SOAP_USER_SESSION 00002 #define __SOAP_USER_SESSION 00003 00004 #include <UserProfile.h> 00005 00006 class UserSession { 00007 public: 00008 UserSession(); 00009 ~UserSession(); 00010 bool valid; // session is logged in and valid 00011 long int lastUsedTime; // last time session was used 00012 UserProfile profile; 00013 string username; 00014 string challenge; 00015 }; 00016 00017 #endif