Engine.h (809B)
1 /* 2 ZynAddSubFX - a software synthesizer 3 4 Engine.h - 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 14 #ifndef ENGINE_H 15 #define ENGINE_H 16 #include <string> 17 18 namespace zyn { 19 20 /**Marker for input/output driver*/ 21 class Engine 22 { 23 public: 24 Engine(); 25 virtual ~Engine(); 26 27 /**Start the Driver with all capabilities 28 * @return true on success*/ 29 virtual bool Start() = 0; 30 /**Completely stop the Driver*/ 31 virtual void Stop() = 0; 32 33 std::string name; 34 }; 35 36 } 37 38 #endif