本文整理汇总了C++中Download::done方法的典型用法代码示例。如果您正苦于以下问题:C++ Download::done方法的具体用法?C++ Download::done怎么用?C++ Download::done使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Download
的用法示例。
在下文中一共展示了Download::done方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: cscope
// TimeSlice Interface
void
dmz::JsExtV8HTTPCurl::update_time_slice (const Float64 DeltaTime) {
v8::Context::Scope cscope (_v8Context);
v8::HandleScope scope;
if (_dlList) {
Download *prev (0);
Download *current (_dlList);
while (current) {
if (current->done ()) {
if (prev) { prev->next = current->next; }
else { _dlList = current->next; }
Download *tmp = current;
current = current->next;
delete tmp; tmp = 0;
}
else { current = current->next; }
}
}
if (_ulList) {
Upload *prev (0);
Upload *current (_ulList);
while (current) {
if (current->done ()) {
if (prev) { prev->next = current->next; }
else { _ulList = current->next; }
Upload *tmp = current;
current = current->next;
delete tmp; tmp = 0;
}
else { current = current->next; }
}
}
}