本文整理汇总了C++中PyRep::hash方法的典型用法代码示例。如果您正苦于以下问题:C++ PyRep::hash方法的具体用法?C++ PyRep::hash怎么用?C++ PyRep::hash使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyRep
的用法示例。
在下文中一共展示了PyRep::hash方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: EncodeChanges
void ClientSession::EncodeChanges( PyDict* into )
{
PyDict::const_iterator cur, end;
cur = mSession->begin();
end = mSession->end();
for(; cur != end; cur++)
{
PyString* str = cur->first->AsString();
PyTuple* value = cur->second->AsTuple();
PyRep* last = value->GetItem( 0 );
PyRep* current = value->GetItem( 1 );
if( last->hash() != current->hash() )
{
// Duplicate tuple
PyTuple* t = new PyTuple( 2 );
t->SetItem( 0, last ); PyIncRef( last );
t->SetItem( 1, current ); PyIncRef( current );
into->SetItem( str, t ); PyIncRef( str );
// Update our tuple
value->SetItem( 0, current ); PyIncRef( current );
}
}
mDirty = false;
}
示例2: _Set
void ClientSession::_Set( const char* name, PyRep* value )
{
PyTuple* v = _GetValueTuple( name );
if( v == NULL )
{
v = new PyTuple( 2 );
v->SetItem( 0, new PyNone );
v->SetItem( 1, new PyNone );
mSession->SetItemString( name, v );
}
PyRep* current = v->GetItem( 1 );
if( value->hash() != current->hash() )
{
v->SetItem( 1, value );
mDirty = true;
}
else
{
PyDecRef( value );
}
}