| 322 | } |
| 323 | |
| 324 | void Tr2Controller::GetExpressionTermInfo( std::vector<Tr2ExpressionTermInfoPtr>& out ) const |
| 325 | { |
| 326 | for( auto it = begin( m_variables ); it != end( m_variables ); ++it ) |
| 327 | { |
| 328 | out.push_back( Tr2ExpressionTermInfo::Variable( "Variables", ( *it )->GetName().c_str(), "controller variable" ) ); |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | const PTr2ControllerFloatVariableVector& Tr2Controller::GetVariables() const |
| 333 | { |