本文整理汇总了C++中list_t::first方法的典型用法代码示例。如果您正苦于以下问题:C++ list_t::first方法的具体用法?C++ list_t::first怎么用?C++ list_t::first使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类list_t
的用法示例。
在下文中一共展示了list_t::first方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: if
gboolean
post_parse()
{
if (file_ != 0)
{
if (tofile_ == 0 && todir_ == 0)
{
log::errorf("One of \"tofile\" or \"todir\" must be specified with \"file\"\n");
return FALSE;
}
}
else if (filesets_.first() != 0)
{
if (tofile_ != 0)
{
log::errorf("Only \"todir\" is allowed with \"filesets\"\n");
return FALSE;
}
if (todir_ == 0)
{
log::errorf("Must use \"todir\" is \"filesets\"\n");
return FALSE;
}
}
else if (file_ == 0 && filesets_.first() == 0)
{
log::errorf("At least one of \"file\" or \"<fileset>\" must be present\n");
return FALSE;
}
if (mapper_ == 0)
mapper_ = mapper_t::create("identity", 0, 0);
return TRUE;
}
示例2: expand
gboolean
exec()
{
list_iterator_t<fileset_t> iter;
result_ = TRUE;
ncopied_ = 0;
exp_todir_ = expand(todir_);
if (file_ != 0)
{
string_var expfile = expand(file_);
copy_one(expfile, this);
}
/* execute for <fileset> children */
for (iter = filesets_.first() ; iter != 0 ; ++iter)
(*iter)->apply(project_->properties(), copy_one, this);
exp_todir_ = (char*)0;
return result_;
}