void
CBCI2000Controller::get_control_signal( ArgList& ioArgs )
{
  double result = 0;
  CALL( GetControlSignal( ioArgs.GetInt( 1 ), ioArgs.GetInt( 2 ), result ) );
  ioArgs.SetDouble( 0, result );
}
void
CBCI2000Controller::set_state_variable( ArgList& ioArgs )
{
  CALL( SetStateVariable( ioArgs.GetString( 1 ), ioArgs.GetInt( 2 ) ) );
}
void
CBCI2000Controller::add_state_variable( ArgList& ioArgs )
{
  CALL( AddStateVariable( ioArgs.GetString( 1 ), ioArgs.GetInt( 2 ), ioArgs.GetInt( 3 ) ) );
}