本文整理汇总了C++中LLNameValue::getAsset方法的典型用法代码示例。如果您正苦于以下问题:C++ LLNameValue::getAsset方法的具体用法?C++ LLNameValue::getAsset怎么用?C++ LLNameValue::getAsset使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LLNameValue
的用法示例。
在下文中一共展示了LLNameValue::getAsset方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: setFromNameValue
// Assets (aka potential inventory items) can be applied to an
// object in the world. We'll store that as a string name value
// pair where the name encodes part of asset info, and the value
// the rest. LLAssetInfo objects will be responsible for parsing
// the meaning out froman LLNameValue object. See the inventory
// design docs for details. Briefly:
// name=<inv_type>|<uuid>
// value=<creatorid>|<name>|<description>|
void LLAssetInfo::setFromNameValue( const LLNameValue& nv )
{
std::string str;
std::string buf;
std::string::size_type pos1;
std::string::size_type pos2;
// convert the name to useful information
str.assign( nv.mName );
pos1 = str.find('|');
buf.assign( str, 0, pos1++ );
mType = LLAssetType::lookup( buf );
buf.assign( str, pos1, std::string::npos );
mUuid.set( buf );
// convert the value to useful information
str.assign( nv.getAsset() );
pos1 = str.find('|');
buf.assign( str, 0, pos1++ );
mCreatorID.set( buf );
pos2 = str.find( '|', pos1 );
buf.assign( str, pos1, (pos2++) - pos1 );
setName( buf );
buf.assign( str, pos2, std::string::npos );
setDescription( buf );
llinfos << "uuid: " << mUuid << llendl;
llinfos << "creator: " << mCreatorID << llendl;
}