00001 00014 #ifndef _cDownload_h 00015 #define _cDownload_h 00016 00017 #include <string> 00018 00019 using std::string; 00020 00021 class cDownload 00022 { 00023 public: 00024 00026 cDownload(); 00027 00029 ~cDownload(); 00030 00031 const int ToFile(const string sURL, const string sFilename, const string sAgent); 00032 protected: 00033 00034 00035 private: 00036 00037 }; 00038 00039 #endif // _cDownload_h 00040