From dbdbf183d4689f46e2c012006fcc411d66c9e922 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Mon, 30 May 2022 10:22:54 +0000 Subject: [PATCH] - use namespace std; - make mmore portable regarding matric lib git-svn-id: http://moon:8086/svn/software/trunk/projects/mpsk_rx_gui@895 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- Source/GraphComponent.cpp | 2 ++ Source/IQPlaneComponent.cpp | 1 + Source/MainComponent.cpp | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) 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);