本文整理汇总了C++中file::initial_length方法的典型用法代码示例。如果您正苦于以下问题:C++ file::initial_length方法的具体用法?C++ file::initial_length怎么用?C++ file::initial_length使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类file
的用法示例。
在下文中一共展示了file::initial_length方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: if
progressbar::progressbar(const file& f, const quvi::media& m)
: _update_interval(1),
_expected_bytes(m.content_length()),
_initial_bytes(f.initial_length()),
_time_started(0),
_last_update(0),
_term_width(0),
_dot_count(0),
_count(0),
_width(0),
_file(f),
_done(false),
_mode(normal)
{
if (_initial_bytes > _expected_bytes)
_expected_bytes = _initial_bytes;
#ifdef WITH_RESIZE
signal(SIGWINCH, handle_sigwinch);
if (!_term_width || recv_sigwinch)
{
_term_width = get_term_width();
if (!_term_width)
_term_width = default_term_width;
}
#else
_term_width = default_term_width;
#endif
_width = _term_width;
const po::variables_map map = cc::opts.map();
time(&_time_started);
if (opts.flags.background)
_mode = dotline;
else
{
const std::string s = map["progressbar"].as<std::string>();
if (s == "simple")
_mode = simple;
else if (s == "dotline")
_mode = dotline;
}
_update_interval = fabs(map["update-interval"].as<double>());
}