mirror of https://github.com/aria2/aria2
2010-07-10 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Removed unusable typedefs * src/FileAllocationIterator.h * src/MultiDiskAdaptor.cc * src/MultiFileAllocationIterator.h * src/SingleFileAllocationIterator.hpull/1/head
parent
8d2ca8e03c
commit
eecb81dc60
|
@ -1,3 +1,11 @@
|
|||
2010-07-10 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Removed unusable typedefs
|
||||
* src/FileAllocationIterator.h
|
||||
* src/MultiDiskAdaptor.cc
|
||||
* src/MultiFileAllocationIterator.h
|
||||
* src/SingleFileAllocationIterator.h
|
||||
|
||||
2010-07-10 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Fixed the bug that DownloadContext::resetDownloadStartTime() never
|
||||
|
|
|
@ -55,8 +55,6 @@ public:
|
|||
virtual uint64_t getTotalLength() = 0;
|
||||
};
|
||||
|
||||
typedef SharedHandle<FileAllocationIterator> FileAllocationIteratorHandle;
|
||||
|
||||
} // namespace aria2
|
||||
|
||||
#endif // _D_FILE_ALLOCATION_ITERATOR_H_
|
||||
|
|
|
@ -461,7 +461,7 @@ uint64_t MultiDiskAdaptor::size()
|
|||
return size;
|
||||
}
|
||||
|
||||
FileAllocationIteratorHandle MultiDiskAdaptor::fileAllocationIterator()
|
||||
SharedHandle<FileAllocationIterator> MultiDiskAdaptor::fileAllocationIterator()
|
||||
{
|
||||
return SharedHandle<FileAllocationIterator>
|
||||
(new MultiFileAllocationIterator(this));
|
||||
|
|
|
@ -67,8 +67,6 @@ public:
|
|||
getDiskWriterEntries() const;
|
||||
};
|
||||
|
||||
typedef SharedHandle<MultiFileAllocationIterator> MultiFileAllocationIteratorHandle;
|
||||
|
||||
} // namespace aria2
|
||||
|
||||
#endif // _D_MULTI_FILE_ALLOCATION_ITERATOR_H_
|
||||
|
|
|
@ -76,8 +76,6 @@ public:
|
|||
void init();
|
||||
};
|
||||
|
||||
typedef SharedHandle<SingleFileAllocationIterator> SingleFileAllocationIteratorHandle;
|
||||
|
||||
} // namespace aria2
|
||||
|
||||
#endif // _D_SINGLE_FILE_ALLOCATION_ITERATOR_H_
|
||||
|
|
Loading…
Reference in New Issue