Update of /cvsroot/q-lang/faust2pd/faust
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22410/faust
Modified Files:
puredata.cpp
Log Message:
fixes for compatibility with latest Faust from cvs
Index: puredata.cpp
===================================================================
RCS file: /cvsroot/q-lang/faust2pd/faust/puredata.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** puredata.cpp 12 Mar 2008 10:19:49 -0000 1.3
--- puredata.cpp 11 Aug 2008 08:15:15 -0000 1.4
***************
*** 6,12 ****
#include <stdlib.h>
#include <math.h>
using namespace std;
! #include <string>
//-------------------------------------------------------------------
--- 6,17 ----
#include <stdlib.h>
#include <math.h>
+ #include <string>
using namespace std;
!
! struct Meta
! {
! void declare (const char* key, const char* value) {}
! };
//-------------------------------------------------------------------
***************
*** 113,116 ****
--- 118,123 ----
void stop() { fStopped = true; }
bool stopped() { return fStopped; }
+
+ virtual void declare(float* zone, const char* key, const char* value) {}
};
|