Move socket to utility/ and fix include

This commit is contained in:
30hours 2024-01-31 09:06:41 +00:00
parent 16cba62d34
commit 3a9b909d14
4 changed files with 2 additions and 3 deletions

View file

@ -51,7 +51,7 @@ add_executable(blah2
src/process/tracker/Tracker.cpp src/process/tracker/Tracker.cpp
src/process/spectrum/SpectrumAnalyser.cpp src/process/spectrum/SpectrumAnalyser.cpp
src/process/meta/HammingNumber.cpp src/process/meta/HammingNumber.cpp
src/process/meta/Socket.cpp src/process/utility/Socket.cpp
src/data/IqData.cpp src/data/IqData.cpp
src/data/Map.cpp src/data/Map.cpp
src/data/Detection.cpp src/data/Detection.cpp

View file

@ -15,13 +15,12 @@
#include "process/detection/Interpolate.h" #include "process/detection/Interpolate.h"
#include "process/spectrum/SpectrumAnalyser.h" #include "process/spectrum/SpectrumAnalyser.h"
#include "process/tracker/Tracker.h" #include "process/tracker/Tracker.h"
#include "process/meta/Socket.h" #include "process/utility/Socket.h"
#include "data/meta/Constants.h" #include "data/meta/Constants.h"
#include <ryml/ryml.hpp> #include <ryml/ryml.hpp>
#include <ryml/ryml_std.hpp> // optional header, provided for std:: interop #include <ryml/ryml_std.hpp> // optional header, provided for std:: interop
#include <c4/format.hpp> // needed for the examples below #include <c4/format.hpp> // needed for the examples below
#include <asio.hpp>
#include <sys/types.h> #include <sys/types.h>
#include <getopt.h> #include <getopt.h>
#include <string> #include <string>