Version 2.01

This commit is contained in:
Gary Scavone
2013-09-25 11:17:56 +02:00
committed by Stephen Sinclair
parent 6485746ee9
commit ea749b71d2
223 changed files with 12125 additions and 4552 deletions

23
WvOut.h Normal file
View File

@@ -0,0 +1,23 @@
/********************************************/
/* Output Abstract Class, */
/* by Tim Stilson, 1996 */
/* based on code by Perry R. Cook, 1995-96 */
/********************************************/
#include "Object.h"
#if !defined(__WvOut_h)
#define __WvOut_h
class WvOut : public Object
{
public:
WvOut();
virtual ~WvOut();
virtual void tick(MY_FLOAT sample);
};
#endif // defined(__WvOut_h)