mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-12 04:47:14 +02:00
Moving headers into include/sls (#212)
This commit is contained in:
@ -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>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "StaticVector.h"
|
||||
#include "TypeTraits.h"
|
||||
#include "sls/StaticVector.h"
|
||||
#include "sls/TypeTraits.h"
|
||||
#include "catch.hpp"
|
||||
|
||||
#include <array>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "Timer.h"
|
||||
#include "sls/Timer.h"
|
||||
#include "catch.hpp"
|
||||
|
||||
#include <chrono>
|
||||
|
@ -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>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "TypeTraits.h"
|
||||
#include "sls/TypeTraits.h"
|
||||
#include "catch.hpp"
|
||||
#include <array>
|
||||
#include <chrono>
|
||||
|
@ -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>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ZmqSocket.h"
|
||||
#include "sls/ZmqSocket.h"
|
||||
#include "catch.hpp"
|
||||
|
||||
TEST_CASE("Throws when cannot create socket") {
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "bit_utils.h"
|
||||
#include "sls/bit_utils.h"
|
||||
#include "catch.hpp"
|
||||
#include <vector>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "catch.hpp"
|
||||
#include "container_utils.h"
|
||||
#include "sls/container_utils.h"
|
||||
#include <exception>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "catch.hpp"
|
||||
#include "logger.h"
|
||||
#include "sls/logger.h"
|
||||
#include <chrono>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
|
@ -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;
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "catch.hpp"
|
||||
#include "sls_detector_defs.h"
|
||||
#include "sls/sls_detector_defs.h"
|
||||
|
||||
using dt = slsDetectorDefs::detectorType;
|
||||
|
||||
|
@ -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") {
|
||||
|
||||
|
Reference in New Issue
Block a user