/[svn]/linuxsampler/trunk/src/effects/Effect.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/effects/Effect.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3053 by schoenebeck, Thu Sep 30 20:00:43 2010 UTC revision 3054 by schoenebeck, Thu Dec 15 12:47:45 2016 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   Copyright (C) 2008, 2010 Christian Schoenebeck                        *   *   Copyright (C) 2008 - 2016 Christian Schoenebeck                       *
4   *                                                                         *   *                                                                         *
5   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
6   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 47  AudioChannel* Effect::InputChannel(uint Line 47  AudioChannel* Effect::InputChannel(uint
47  }  }
48    
49  uint Effect::InputChannelCount() const {  uint Effect::InputChannelCount() const {
50      return vInputChannels.size();      return (uint) vInputChannels.size();
51  }  }
52    
53  AudioChannel* Effect::OutputChannel(uint ChannelIndex) const {  AudioChannel* Effect::OutputChannel(uint ChannelIndex) const {
# Line 56  AudioChannel* Effect::OutputChannel(uint Line 56  AudioChannel* Effect::OutputChannel(uint
56  }  }
57    
58  uint Effect::OutputChannelCount() const {  uint Effect::OutputChannelCount() const {
59      return vOutputChannels.size();      return (uint) vOutputChannels.size();
60  }  }
61    
62  EffectControl* Effect::InputControl(uint ControlIndex) const {  EffectControl* Effect::InputControl(uint ControlIndex) const {
# Line 65  EffectControl* Effect::InputControl(uint Line 65  EffectControl* Effect::InputControl(uint
65  }  }
66    
67  uint Effect::InputControlCount() const {  uint Effect::InputControlCount() const {
68      return vInputControls.size();      return (uint) vInputControls.size();
69  }  }
70    
71  void Effect::SetParent(void* pParent) {  void Effect::SetParent(void* pParent) {

Legend:
Removed from v.3053  
changed lines
  Added in v.3054

  ViewVC Help
Powered by ViewVC