Files
stk/WvOut.h
Gary Scavone ea749b71d2 Version 2.01
2013-09-29 22:39:45 +02:00

24 lines
453 B
C++

/********************************************/
/* 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)