本文整理汇总了C++中Archiver::unload方法的典型用法代码示例。如果您正苦于以下问题:C++ Archiver::unload方法的具体用法?C++ Archiver::unload怎么用?C++ Archiver::unload使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Archiver
的用法示例。
在下文中一共展示了Archiver::unload方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Error
//! Run through the data
void dsp::LoadToFold::finish () try
{
if (phased_filterbank)
{
cerr << "Calling PhaseLockedFilterbank::normalize_output" << endl;
phased_filterbank -> normalize_output ();
}
SingleThread::finish();
if (!output_subints())
{
if (!unloader.size())
throw Error (InvalidState, "dsp::LoadToFold::finish", "no unloader");
for (unsigned i=0; i<fold.size(); i++)
{
Archiver* archiver = dynamic_cast<Archiver*>( unloader[0].get() );
if (!archiver)
throw Error (InvalidState, "dsp::LoadToFold::finish",
"unloader is not an archiver (single integration)");
/*
In multi-threaded applications, the thread that calls the
finish method may not be the thread that called the prepare
method.
*/
if (Operation::verbose)
cerr << "Creating archive " << i+1 << endl;
if (phased_filterbank)
archiver->unload( phased_filterbank->get_output() );
else
archiver->unload( fold[i]->get_result() );
}
}
}
catch (Error& error)
{
throw error += "dsp::LoadToFold::finish";
}