Esempio n. 1
0
void LiveScene::relativeContentPath( SceneInterface::Path &path ) const
{
	path.clear();
	
	if ( !m_contentIndex )
	{
		return;
	}
	
	path.reserve( m_path.size() - m_contentIndex );
	path.insert( path.begin(), m_path.begin() + m_contentIndex, m_path.end() );
}