Moving headers into include/sls (#212)

This commit is contained in:
Erik Fröjdh
2020-11-02 16:05:28 +01:00
committed by GitHub
parent a57bbc084c
commit a15d8dd30a
199 changed files with 417 additions and 413 deletions

View File

@ -1,5 +1,5 @@
#include "ClientSocket.h"
#include "ServerSocket.h"
#include "sls/ClientSocket.h"
#include "sls/ServerSocket.h"
#include "catch.hpp"
#include <chrono>
#include <future>

View File

@ -1,5 +1,5 @@
#include "StaticVector.h"
#include "TypeTraits.h"
#include "sls/StaticVector.h"
#include "sls/TypeTraits.h"
#include "catch.hpp"
#include <array>

View File

@ -1,4 +1,4 @@
#include "Timer.h"
#include "sls/Timer.h"
#include "catch.hpp"
#include <chrono>

View File

@ -1,8 +1,8 @@
#include "TimeHelper.h"
#include "ToString.h"
#include "sls/TimeHelper.h"
#include "sls/ToString.h"
#include "catch.hpp"
#include "network_utils.h"
#include "sls_detector_defs.h"
#include "sls/network_utils.h"
#include "sls/sls_detector_defs.h"
#include <array>
#include <map>
#include <sstream>

View File

@ -1,4 +1,4 @@
#include "TypeTraits.h"
#include "sls/TypeTraits.h"
#include "catch.hpp"
#include <array>
#include <chrono>

View File

@ -1,6 +1,6 @@
#include "UdpRxSocket.h"
#include "sls/UdpRxSocket.h"
#include "catch.hpp"
#include "sls_detector_exceptions.h"
#include "sls/sls_detector_exceptions.h"
#include <cstdint>
#include <errno.h>
#include <future>

View File

@ -1,4 +1,4 @@
#include "ZmqSocket.h"
#include "sls/ZmqSocket.h"
#include "catch.hpp"
TEST_CASE("Throws when cannot create socket") {

View File

@ -1,4 +1,4 @@
#include "bit_utils.h"
#include "sls/bit_utils.h"
#include "catch.hpp"
#include <vector>

View File

@ -1,5 +1,5 @@
#include "catch.hpp"
#include "container_utils.h"
#include "sls/container_utils.h"
#include <exception>
#include <string>
#include <vector>

View File

@ -1,5 +1,5 @@
#include "catch.hpp"
#include "logger.h"
#include "sls/logger.h"
#include <chrono>
#include <fstream>
#include <iostream>

View File

@ -1,12 +1,12 @@
#include "catch.hpp"
#include "network_utils.h"
#include "sls/network_utils.h"
#include <iostream>
#include <sstream>
#include <vector>
#include "sls_detector_exceptions.h"
#include "string_utils.h"
#include "sls/sls_detector_exceptions.h"
#include "sls/string_utils.h"
using namespace sls;

View File

@ -1,5 +1,5 @@
#include "catch.hpp"
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
using dt = slsDetectorDefs::detectorType;

View File

@ -1,9 +1,9 @@
#include "catch.hpp"
#include "logger.h"
#include "sls/logger.h"
#include <iostream>
#include <vector>
#include "string_utils.h"
#include "sls/string_utils.h"
TEST_CASE("copy a string") {