[DEV] compilation correction

This commit is contained in:
Edouard DUPIN 2015-01-12 21:27:29 +01:00
parent d8860e377e
commit 5b858de808
2 changed files with 5 additions and 5 deletions

View File

@ -46,11 +46,11 @@ void eaudiofx::flow::Base::link() {
EAUDIOFX_INFO(" link flow : '" << m_name << "' mode:'" << (m_input==true?"input":"output") << "' (no code)");
}
void checkCompatibility() {
void eaudiofx::flow::Base::checkCompatibility() {
EAUDIOFX_INFO(" chack flow : '" << m_name << "' (no code)");
}
void getInputBuffer() {
void eaudiofx::flow::Base::getInputBuffer() {
EAUDIOFX_INFO(" get Buffers : '" << m_name << "' (no code)");
}

View File

@ -66,11 +66,11 @@ namespace eaudiofx {
// get pointer on the specidic input and output from all the IOs
virtual void flowLinkInput();
// check if the IOs are compatible
virtual void flowCheckAllCompatibility() {};
virtual void flowCheckAllCompatibility();
// Allocate all Outputs
virtual void flowAllocateOutput() {};
virtual void flowAllocateOutput();
// Get pointer on all Inputs
virtual void flowGetInput() {};
virtual void flowGetInput();
/**
* @brief Get The block named ...