本文整理汇总了C++中boost::property_tree::wptree::count方法的典型用法代码示例。如果您正苦于以下问题:C++ wptree::count方法的具体用法?C++ wptree::count怎么用?C++ wptree::count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类boost::property_tree::wptree
的用法示例。
在下文中一共展示了wptree::count方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: readProperties
void OpacityCommand::readProperties(boost::property_tree::wptree& pt)
{
AbstractCommand::readProperties(pt);
if (pt.count(L"opacity") > 0) setOpacity(pt.get<float>(L"opacity"));
if (pt.count(L"duration") > 0) setDuration(pt.get<int>(L"duration"));
if (pt.count(L"tween") > 0) setTween(QString::fromStdWString(pt.get<std::wstring>(L"tween")));
if (pt.count(L"defer") > 0) setDefer(pt.get<bool>(L"defer"));
}
示例2: readProperties
void SolidColorCommand::readProperties(boost::property_tree::wptree& pt)
{
AbstractCommand::readProperties(pt);
if (pt.count(L"transition") > 0) setTransition(QString::fromStdWString(pt.get<std::wstring>(L"transition")));
if (pt.count(L"duration") > 0) setDuration(pt.get<int>(L"duration"));
if (pt.count(L"tween") > 0) setTween(QString::fromStdWString(pt.get<std::wstring>(L"tween")));
if (pt.count(L"direction") > 0) setDirection(QString::fromStdWString(pt.get<std::wstring>(L"direction")));
if (pt.count(L"solidcolor") > 0) setColor(QString::fromStdWString(pt.get<std::wstring>(L"solidcolor")));
}
示例3: readProperties
void ChromaCommand::readProperties(boost::property_tree::wptree& pt)
{
AbstractCommand::readProperties(pt);
if (pt.count(L"chromablur") > 0) setSpread(pt.get<float>(L"chromablur"));
if (pt.count(L"chromakey") > 0) setKey(QString::fromStdWString(pt.get<std::wstring>(L"chromakey")));
if (pt.count(L"chromasoftness") > 0) setSpread(pt.get<float>(L"chromasoftness"));
if (pt.count(L"chromaspill") > 0) setSpill(pt.get<float>(L"chromaspill"));
if (pt.count(L"chromathreshold") > 0) setThreshold(pt.get<float>(L"chromathreshold"));
setShowMask(false);
}
示例4: readProperties
void HttpPostCommand::readProperties(boost::property_tree::wptree& pt)
{
AbstractCommand::readProperties(pt);
setUrl(QString::fromStdWString(pt.get(L"url", Http::DEFAULT_URL.toStdWString())));
setTriggerOnNext(pt.get(L"triggeronnext", Http::DEFAULT_TRIGGER_ON_NEXT));
if (pt.count(L"httpdata") > 0)
{
BOOST_FOREACH(const boost::property_tree::wptree::value_type& value, pt.get_child(L"httpdata"))
{
this->models.push_back(KeyValueModel(QString::fromStdWString(value.second.get<std::wstring>(L"key")),
QString::fromStdWString(value.second.get<std::wstring>(L"value"))));
}
}
示例5: readProperties
void CropCommand::readProperties(boost::property_tree::wptree& pt)
{
AbstractCommand::readProperties(pt);
if (pt.count(L"cropleft") > 0) setCropLeft(pt.get<float>(L"cropleft"));
if (pt.count(L"cropright") > 0) setCropRight(pt.get<float>(L"cropright"));
if (pt.count(L"croptop") > 0) setCropTop(pt.get<float>(L"croptop"));
if (pt.count(L"cropbottom") > 0) setCropBottom(pt.get<float>(L"cropbottom"));
if (pt.count(L"duration") > 0) setDuration(pt.get<int>(L"duration"));
if (pt.count(L"tween") > 0) setTween(QString::fromStdWString(pt.get<std::wstring>(L"tween")));
if (pt.count(L"defer") > 0) setDefer(pt.get<bool>(L"defer"));
}
示例6: readProperties
void RundownSaturationWidget::readProperties(boost::property_tree::wptree& pt)
{
if (pt.count(L"color") > 0) setColor(QString::fromStdWString(pt.get<std::wstring>(L"color")));
}
示例7: readProperties
void BlendModeCommand::readProperties(boost::property_tree::wptree& pt)
{
AbstractCommand::readProperties(pt);
if (pt.count(L"blendmode") > 0) setBlendMode(QString::fromStdWString(pt.get<std::wstring>(L"blendmode")));
}