Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've generated source and project files for simple vst synth in Introjucer. The code compiles with one weird error: error C2259: 'SimpleSynthAudioProcessor' : cannot instantiate abstract class

The compiler thinks that SimpleSynthAudioProcessor is an abstract class but it isn't!

This is my header file for that class: http://pastebin.com/Ge2sHAWq

And this is the header file for the base class of class above: http://pastebin.com/UKC7h5P5

I wasn't coding in C++ for a long time, but anyway I don't see any problem in this code.

share|improve this question

1 Answer

Looks like you haven't implemented virtual bool silenceInProducesSilenceOut() const = 0;

share|improve this answer
Do I need to implement every virtual function that's in the base class? – Piotr Joniec Dec 28 '12 at 13:41
1  
@PiotrJoniec, No, only the pure virtual ones marked as = 0. They're the ones that make the base class abstract. – acraig5075 Dec 28 '12 at 13:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.