本文整理汇总了C++中UUID::from_string方法的典型用法代码示例。如果您正苦于以下问题:C++ UUID::from_string方法的具体用法?C++ UUID::from_string怎么用?C++ UUID::from_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UUID
的用法示例。
在下文中一共展示了UUID::from_string方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: result
/*!
\brief Lookup a dmz::UUID that is stored as a String in an attribute element.
\note The UUID is converted from a String.
\param[in] AttrHandle Attribute handle.
\param[in] Element Index of attribute element.
\param[out] value Variable to be stored.
\return Returns dmz::True if the element was successfully stored.
*/
dmz::Boolean
dmz::Data::lookup_uuid (
const Handle AttrHandle,
const Int32 Element,
UUID &value) const {
Boolean result (False);
String tmp;
if (lookup_string (AttrHandle, Element, tmp)) { result = value.from_string (tmp); }
return result;
}