mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
24 lines
453 B
C++
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)
|