mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
2008-02-08 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Removed "using namespace std;" from all sources. Appended std:: prefix to c++ standard classes. Included string.h where mem* function are used.
This commit is contained in:
parent
d82e183d34
commit
1b7c198289
801 changed files with 12024 additions and 8627 deletions
|
@ -38,26 +38,29 @@
|
|||
#include "PieceHashCheckIntegrityEntry.h"
|
||||
#include "TimeA2.h"
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
class Request;
|
||||
typedef SharedHandle<Request> RequestHandle;
|
||||
|
||||
class StreamCheckIntegrityEntry:public PieceHashCheckIntegrityEntry
|
||||
{
|
||||
private:
|
||||
RequestHandle _currentRequest;
|
||||
SharedHandle<Request> _currentRequest;
|
||||
Time _timer;
|
||||
public:
|
||||
StreamCheckIntegrityEntry(const RequestHandle& currentRequest,
|
||||
StreamCheckIntegrityEntry(const SharedHandle<Request>& currentRequest,
|
||||
RequestGroup* requestGroup,
|
||||
Command* nextCommand = 0);
|
||||
|
||||
virtual ~StreamCheckIntegrityEntry();
|
||||
|
||||
virtual Commands onDownloadFinished(DownloadEngine* e);
|
||||
virtual std::deque<Command*> onDownloadFinished(DownloadEngine* e);
|
||||
|
||||
virtual Commands onDownloadIncomplete(DownloadEngine* e);
|
||||
virtual std::deque<Command*> onDownloadIncomplete(DownloadEngine* e);
|
||||
};
|
||||
|
||||
typedef SharedHandle<StreamCheckIntegrityEntry> StreamCheckIntegrityEntryHandle;
|
||||
|
||||
} // namespace aria2
|
||||
|
||||
#endif // _D_STREAM_CHECK_INTEGRITY_ENTRY_H_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue