DVarManipulator.inl
Go to the documentation of this file.
1 namespace iv
2 {
3 
4 template< class Type >
5 void DVarManipulator::set( DVarIdT< Type > id, Type const & value )
6 {
7  if( this->dvs )
8  this->dvs->set< Type >( this->instance(), id, value );
9 }
10 
11 }