----------------------------------------------------------------------------- Return all ValueIDs for the given scene. -----------------------------------------------------------------------------
| 404 | // Return all ValueIDs for the given scene. |
| 405 | //----------------------------------------------------------------------------- |
| 406 | int Scene::GetValues |
| 407 | ( |
| 408 | vector<ValueID>* o_value |
| 409 | ) |
| 410 | { |
| 411 | int size = (int) m_values.size(); |
| 412 | if( size > 0 ) |
| 413 | { |
| 414 | for( vector<SceneStorage*>::iterator it = m_values.begin(); it != m_values.end(); ++it ) |
| 415 | { |
| 416 | o_value->push_back( (*it)->m_id ); |
| 417 | } |
| 418 | } |
| 419 | return size; |
| 420 | } |
| 421 | |
| 422 | //----------------------------------------------------------------------------- |
| 423 | // <Scene::GetValue> |
no test coverage detected