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 @@
#pragma once
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
#include <string>
struct SingleDetectorConfig {

View File

@@ -1,5 +1,5 @@
#pragma once
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
using dt = slsDetectorDefs::detectorType;
using di = slsDetectorDefs::dacIndex;
using defs = slsDetectorDefs;

View File

@@ -1,9 +1,9 @@
#include "ClientSocket.h"
#include "sls/ClientSocket.h"
#include "clara.hpp"
#include "sls_detector_exceptions.h"
#include "sls/sls_detector_exceptions.h"
#include "tests/testenum.h"
#include "container_utils.h"
#include "sls/container_utils.h"
#include <iostream>
bool help = false;

View File

@@ -1,10 +1,10 @@
#include "ServerSocket.h"
#include "sls/ServerSocket.h"
#include "clara.hpp"
#include "tests/testenum.h"
#include "ServerInterface.h"
#include "container_utils.h"
#include "sls/ServerInterface.h"
#include "sls/container_utils.h"
#include <iostream>
#include <unordered_map>

View File

@@ -3,9 +3,9 @@
// #include "catch.hpp"
#define CATCH_CONFIG_RUNNER
#include "ToString.h"
#include "sls/ToString.h"
#include "catch.hpp"
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
#include "tests/config.h"
#include <string>