mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
22 lines
358 B
C++
22 lines
358 B
C++
/*******************************************/
|
|
/* Output Abstract Class, */
|
|
/* by Tim Stilson, 1996 */
|
|
/* based on code by Perry R. Cook, 1995-96*/
|
|
/*******************************************/
|
|
|
|
#include "WvOut.h"
|
|
#include <stdio.h>
|
|
|
|
WvOut :: WvOut()
|
|
{
|
|
}
|
|
|
|
WvOut :: ~WvOut()
|
|
{
|
|
}
|
|
|
|
void WvOut :: tick(MY_FLOAT sample)
|
|
{
|
|
}
|
|
|