diff --git a/Source/GraphComponent.cpp b/Source/GraphComponent.cpp index eee0141..fe1c00c 100644 --- a/Source/GraphComponent.cpp +++ b/Source/GraphComponent.cpp @@ -22,6 +22,8 @@ #include "GraphComponent.h" +using namespace std; + //[MiscUserDefs] You can add your own user definitions and misc code here... //[/MiscUserDefs] diff --git a/Source/IQPlaneComponent.cpp b/Source/IQPlaneComponent.cpp index 4d06dbf..60603b0 100644 --- a/Source/IQPlaneComponent.cpp +++ b/Source/IQPlaneComponent.cpp @@ -22,6 +22,7 @@ #include "IQPlaneComponent.h" +using namespace std; //[MiscUserDefs] You can add your own user definitions and misc code here... //[/MiscUserDefs] diff --git a/Source/MainComponent.cpp b/Source/MainComponent.cpp index 80fb869..ef96196 100644 --- a/Source/MainComponent.cpp +++ b/Source/MainComponent.cpp @@ -152,7 +152,7 @@ void MainComponent::audioDeviceIOCallback (const float** inputChannelData, (void) numInputChannels; (void) numOutputChannels; - Map rf((RealScalar*)inputChannelData[0], numSamples); + RMap rf((RealScalar*)inputChannelData[0], numSamples); m_pTransmitterControl->getData(outputChannelData[0], numSamples); // m_pReceiver->processPassband(rf, numSamples); m_rxBuf.write(rf, numSamples);