mirror of
https://github.com/thestk/stk
synced 2026-01-15 22:11:52 +00:00
Version 3.0
This commit is contained in:
committed by
Stephen Sinclair
parent
7c0ee03d60
commit
868787a5f9
27
STK/WvOut.cpp
Normal file
27
STK/WvOut.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/********************************************/
|
||||
/* WvOut Abstract Class, */
|
||||
/* by Tim Stilson, 1996 */
|
||||
/* revised by Gary P. Scavone, 1999 */
|
||||
/* */
|
||||
/* This class can handle multi-channel */
|
||||
/* data via the mtick() method. */
|
||||
/********************************************/
|
||||
|
||||
#include "WvOut.h"
|
||||
#include <stdio.h>
|
||||
|
||||
WvOut :: WvOut()
|
||||
{
|
||||
}
|
||||
|
||||
WvOut :: ~WvOut()
|
||||
{
|
||||
}
|
||||
|
||||
void WvOut :: tick(MY_FLOAT sample)
|
||||
{
|
||||
}
|
||||
|
||||
void WvOut :: mtick(MY_MULTI samples)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user