本文整理汇总了C++中CharString::GetData方法的典型用法代码示例。如果您正苦于以下问题:C++ CharString::GetData方法的具体用法?C++ CharString::GetData怎么用?C++ CharString::GetData使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CharString
的用法示例。
在下文中一共展示了CharString::GetData方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SerializeCharString
/// @copydoc Serializer::SerializeCharString()
void BinarySerializer::SerializeCharString( CharString& rValue )
{
if( ShouldSerializeCurrentProperty() )
{
HELIUM_ASSERT( rValue.GetSize() <= UINT32_MAX );
uint32_t stringLength = static_cast< uint32_t >( rValue.GetSize() );
m_pPropertyStream->Write( &stringLength, sizeof( stringLength ), 1 );
m_pPropertyStream->Write( rValue.GetData(), sizeof( char ), stringLength );
}
}
示例2: StringHash
/// Default CharString hash.
///
/// @param[in] rKey Key for which to compute a hash value.
///
/// @return Hash value.
size_t Hash< CharString >::operator()( const CharString& rKey ) const
{
return StringHash( rKey.GetData() );
}
示例3: StringBase
/// Copy constructor.
///
/// When copying, only the memory needed to hold onto the used contents of the source string will be allocated (i.e.
/// if the source string has 10 elements but a capacity of 20, only memory for the 10 used elements will be
/// allocated for this copy).
///
/// @param[in] rSource String from which to copy.
CharString::CharString( const CharString& rSource )
: StringBase( rSource.GetData(), rSource.GetSize() )
{
}