---------------------------------------------------------------
| 43 | |
| 44 | // --------------------------------------------------------------- |
| 45 | bool TriVariableParameter::Initialize() |
| 46 | { |
| 47 | if( !m_variableName.empty() ) |
| 48 | { |
| 49 | m_variable = GlobalStore().GetVariable( m_variableName.c_str() ); |
| 50 | } |
| 51 | else |
| 52 | { |
| 53 | m_variable = NULL; |
| 54 | } |
| 55 | return true; |
| 56 | } |
| 57 | |
| 58 | // --------------------------------------------------------------- |
| 59 | bool TriVariableParameter::CopyToResourceSet( |
nothing calls this directly
no test coverage detected