1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
// NOTE: ANY INCLUDE-GUARD HERE MUST BE DERIVED FROM THE CLASS NAME
//
// faust2header.cpp - FAUST Architecture File
// This is a simple variation of matlabplot.cpp in the Faust distribution
// aimed at creating a simple C++ header file (.h) containing a Faust DSP.
// See the Makefile for how to use it.
#include <faust/dsp/dsp.h>
#include <faust/gui/APIUI.h>
// NOTE: "faust -scn name" changes the last line above to
// #include <faust/name/name.h>
//----------------------------------------------------------------------------
// FAUST Generated Code
//----------------------------------------------------------------------------
<<includeIntrinsic>>
<<includeclass>>
|