Advertisement
Guest User

HTML reader for software update

a guest
Dec 19th, 2010
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.86 KB | None | 0 0
  1. //============================================================================
  2. // Name        : WWP_UpdateInfo.h
  3. // Author      : Bitetti
  4. // Version     :
  5. // Copyright   : www.wildwitchproject.com
  6. // Description : Guarda dados de update
  7. //============================================================================
  8.  
  9.  
  10. #ifndef WWP_UPDATEINFO_H_
  11. #define WWP_UPDATEINFO_H_
  12.  
  13. #include<list>
  14. #include<string>
  15.  
  16. namespace WWP {
  17.  
  18. using namespace std;
  19.  
  20. class WWP_UpdateInfo {
  21. public:
  22.     WWP_UpdateInfo( const char*, const char*, const char*, const char* );
  23.     virtual ~WWP_UpdateInfo();
  24.  
  25.     string URL();
  26.     string Descricao();
  27.     string DateTime();
  28.     string Size();
  29.  
  30.  
  31. private:
  32.  
  33.     //TODO: usar referencia http://www.cplusplus.com/reference/stl/list/list/
  34.  
  35.     string _url;
  36.     string _descricao;
  37.     string _data;
  38.     string _size;
  39.  
  40. };
  41.  
  42. }
  43.  
  44. #endif /* WWP_UPDATEINFO_H_ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement