/usr/include/faust/vst/voice.h is in faust-common 0.9.95~repack1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | //////////////////////////////////////////////////////
// Faust VST Voice
//////////////////////////////////////////////////////
#ifndef __VST_VOICE_H__
#define __VST_VOICE_H__
//#include "../audio/dsp.h"
class Voice : public vstUI {
public:
Voice(int samplingRate)
: vstUI(), m_dsp()
{
m_dsp.init(samplingRate);
m_dsp.buildUserInterface(this);
}
mydsp m_dsp;
}; //end of Voice vlass
#endif
|