duncan
Mom and Dad were wrong!
|
00001 #ifndef DL_DOWNLOADLISTENER_H_ 00002 #define DL_DOWNLOADLISTENER_H_ 00003 00004 namespace dl { 00005 00014 class DownloadListener { 00015 public: 00016 virtual ~DownloadListener() {} 00022 virtual void on_progress(double dlnow, double dltot) {} 00023 }; 00024 00025 } 00026 00027 #endif