/[svn]/linuxsampler/trunk/src/drivers/DeviceParameter.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/drivers/DeviceParameter.cpp

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

revision 173 by senkov, Tue Jun 15 03:19:30 2004 UTC revision 174 by senkov, Tue Jul 6 03:27:38 2004 UTC
# Line 440  namespace LinuxSampler { Line 440  namespace LinuxSampler {
440  // *************** DeviceCreationParameterBool ***************  // *************** DeviceCreationParameterBool ***************
441  // *  // *
442    
443      DeviceCreationParameterBool::DeviceCreationParameterBool() {      DeviceCreationParameterBool::DeviceCreationParameterBool(bool bVal) : DeviceCreationParameter() {
     }  
   
     DeviceCreationParameterBool::DeviceCreationParameterBool(bool bVal) {  
444          this->bVal = bVal;          this->bVal = bVal;
445      }      }
446    
# Line 507  namespace LinuxSampler { Line 504  namespace LinuxSampler {
504  // *************** DeviceCreationParameterInt ***************  // *************** DeviceCreationParameterInt ***************
505  // *  // *
506    
507      DeviceCreationParameterInt::DeviceCreationParameterInt() {      DeviceCreationParameterInt::DeviceCreationParameterInt(int iVal) : DeviceCreationParameter() {
     }  
   
     DeviceCreationParameterInt::DeviceCreationParameterInt(int iVal) {  
508          this->iVal = iVal;          this->iVal = iVal;
509      }      }
510    
# Line 603  namespace LinuxSampler { Line 597  namespace LinuxSampler {
597  // *************** DeviceCreationParameterFloat ***************  // *************** DeviceCreationParameterFloat ***************
598  // *  // *
599    
600      DeviceCreationParameterFloat::DeviceCreationParameterFloat() {      DeviceCreationParameterFloat::DeviceCreationParameterFloat(float fVal) : DeviceCreationParameter() {
     }  
   
     DeviceCreationParameterFloat::DeviceCreationParameterFloat(float fVal) {  
601          this->fVal = fVal;          this->fVal = fVal;
602      }      }
603    
# Line 699  namespace LinuxSampler { Line 690  namespace LinuxSampler {
690  // *************** DeviceCreationParameterString ***************  // *************** DeviceCreationParameterString ***************
691  // *  // *
692    
693      DeviceCreationParameterString::DeviceCreationParameterString() {      DeviceCreationParameterString::DeviceCreationParameterString(String sVal) : DeviceCreationParameter() {
     }  
   
     DeviceCreationParameterString::DeviceCreationParameterString(String sVal) {  
694          this->sVal = sVal;          this->sVal = sVal;
695      }      }
696    
# Line 760  namespace LinuxSampler { Line 748  namespace LinuxSampler {
748  // *************** DeviceCreationParameterStrings ***************  // *************** DeviceCreationParameterStrings ***************
749  // *  // *
750    
751      DeviceCreationParameterStrings::DeviceCreationParameterStrings() {      DeviceCreationParameterStrings::DeviceCreationParameterStrings(std::vector<String> sVals) : DeviceCreationParameter() {
     }  
   
     DeviceCreationParameterStrings::DeviceCreationParameterStrings(std::vector<String> sVals) {  
752          this->sVals = sVals;          this->sVals = sVals;
753      }      }
754    

Legend:
Removed from v.173  
changed lines
  Added in v.174

  ViewVC Help
Powered by ViewVC