owl_patch 0.8.0

Rust SDK for Rebel Technology Owl2/3 devices
Documentation
/*
 
 
 LICENSE:
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 */


/* created by the OWL team 2013 */

#ifndef __TemplatePatch_hpp__
#define __TemplatePatch_hpp__

#include "OpenWareLibrary.h"

class TemplatePatch : public Patch {
public:
  TemplatePatch(){
    registerParameter(PARAMETER_A, "My Knob A");
    registerParameter(PARAMETER_B, "My Knob B");
    registerParameter(PARAMETER_C, "My Knob C");
    registerParameter(PARAMETER_D, "My Knob D");
  }
  void processAudio(AudioBuffer &buffer){
    // put your code here!
  }
};

#endif // __TemplatePatch_hpp__