zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

Engine.cpp (479B)


      1 /*
      2   ZynAddSubFX - a software synthesizer
      3 
      4   Engine.cpp - Audio Driver base class
      5   Copyright (C) 2009-2010 Mark McCurry
      6   Author: Mark McCurry
      7 
      8   This program is free software; you can redistribute it and/or
      9   modify it under the terms of the GNU General Public License
     10   as published by the Free Software Foundation; either version 2
     11   of the License, or (at your option) any later version.
     12 */
     13 #include "Engine.h"
     14 
     15 namespace zyn {
     16 
     17 Engine::Engine()
     18 {}
     19 
     20 Engine::~Engine()
     21 {}
     22 
     23 }