mirror of
https://github.com/thestk/stk
synced 2026-01-19 23:51:51 +00:00
Version 2.01
This commit is contained in:
committed by
Stephen Sinclair
parent
6485746ee9
commit
ea749b71d2
23
WvOut.h
Normal file
23
WvOut.h
Normal 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)
|
||||
Reference in New Issue
Block a user