[DEV] compilation correction
This commit is contained in:
parent
d8860e377e
commit
5b858de808
@ -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)");
|
||||
}
|
||||
|
||||
|
@ -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 ...
|
||||
|
Loading…
Reference in New Issue
Block a user