------------------------------------------------------------- Description: Registers a new variable. If the variable with that name is already registered in this store then if its type is the same the variable is reused otherwise the error is logged and the function returns NULL. Arguments: name - Name of the new variable value - Value for the new variable Return Value: New variable (or old with t
| 79 | // fails). |
| 80 | // ------------------------------------------------------------- |
| 81 | TriVariable* Tr2VariableStore::RegisterVariable( const char* name, float value ) |
| 82 | { |
| 83 | return RegisterVariableInternal( name, value ); |
| 84 | } |
| 85 | |
| 86 | // ------------------------------------------------------------- |
| 87 | // Description: |
no test coverage detected