~marcustomlinson/dspatch/trunk

« back to all changes in this revision

Viewing changes to src/DspComponent.cpp

  • Committer: Marcus Tomlinson
  • Date: 2014-08-17 10:57:23 UTC
  • mfrom: (21.1.4 2.62)
  • Revision ID: marcus.tomlinson@canonical.com-20140817105723-qtm8qkmegbhqyldu
Merged v2.62

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
  {
189
189
    inputName = _inputBus.GetSignal( index )->GetSignalName();
190
190
  }
191
 
  inputName = "";
192
191
 
193
192
  ResumeAutoTick();
194
193
  return inputName;
206
205
  {
207
206
    outputName = _outputBus.GetSignal( index )->GetSignalName();
208
207
  }
209
 
  outputName = "";
210
208
 
211
209
  ResumeAutoTick();
212
210
  return outputName;
251
249
 
252
250
//-------------------------------------------------------------------------------------------------
253
251
 
 
252
DspParameter const* DspComponent::GetParameter( std::string const& paramName )
 
253
{
 
254
    PauseAutoTick();
 
255
    DspParameter const* result = GetParameter_( paramName );
 
256
    ResumeAutoTick();
 
257
    return result;
 
258
}
 
259
 
 
260
//-------------------------------------------------------------------------------------------------
 
261
 
254
262
bool DspComponent::SetParameter( std::string const& paramName, DspParameter const& param )
255
263
{
256
264
  PauseAutoTick();