mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-12 21:07:13 +02:00
Moving headers into include/sls (#212)
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
#pragma once
|
||||
#include "DataSocket.h"
|
||||
#include "sls/DataSocket.h"
|
||||
#include <netdb.h>
|
||||
#include <string>
|
||||
#include <sys/socket.h>
|
@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "TypeTraits.h"
|
||||
#include "sls/TypeTraits.h"
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
#include <iostream>
|
@ -1,12 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "DataSocket.h"
|
||||
#include "sls/DataSocket.h"
|
||||
namespace sls {
|
||||
class ServerInterface;
|
||||
}
|
||||
|
||||
#include "ServerSocket.h"
|
||||
#include "sls_detector_defs.h"
|
||||
#include "sls/ServerSocket.h"
|
||||
#include "sls/sls_detector_defs.h"
|
||||
namespace sls {
|
||||
|
||||
class ServerInterface : public DataSocket {
|
@ -1,8 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
#include "DataSocket.h"
|
||||
#include "ServerInterface.h"
|
||||
#include "network_utils.h"
|
||||
#include "sls/DataSocket.h"
|
||||
#include "sls/ServerInterface.h"
|
||||
#include "sls/network_utils.h"
|
||||
#include <cstdint>
|
||||
#include <netdb.h>
|
||||
#include <string>
|
@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
#include "ToString.h"
|
||||
#include "TypeTraits.h"
|
||||
#include "sls/ToString.h"
|
||||
#include "sls/TypeTraits.h"
|
||||
#include <array>
|
||||
#include <cassert>
|
||||
#include <iostream>
|
@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
#include <chrono>
|
||||
|
||||
#include "TypeTraits.h"
|
||||
#include "sls/TypeTraits.h"
|
||||
namespace sls {
|
||||
namespace time {
|
||||
using ns = std::chrono::nanoseconds;
|
@ -7,11 +7,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "TimeHelper.h"
|
||||
#include "TypeTraits.h"
|
||||
#include "sls_detector_defs.h"
|
||||
#include "sls_detector_exceptions.h"
|
||||
#include "string_utils.h"
|
||||
#include "sls/TimeHelper.h"
|
||||
#include "sls/TypeTraits.h"
|
||||
#include "sls/sls_detector_defs.h"
|
||||
#include "sls/sls_detector_exceptions.h"
|
||||
#include "sls/string_utils.h"
|
||||
#include <array>
|
||||
#include <chrono>
|
||||
#include <iomanip>
|
@ -7,7 +7,7 @@
|
||||
*@short functions to open/close zmq sockets
|
||||
*/
|
||||
|
||||
#include "sls_detector_exceptions.h"
|
||||
#include "sls/sls_detector_exceptions.h"
|
||||
#include <rapidjson/document.h> //json header in zmq stream
|
||||
|
||||
#define MAX_STR_LENGTH 1000
|
||||
@ -16,7 +16,7 @@
|
||||
#define ROIVERBOSITY
|
||||
|
||||
class zmq_msg_t;
|
||||
#include "container_utils.h"
|
||||
#include "sls/container_utils.h"
|
||||
#include <map>
|
||||
#include <memory>
|
||||
/** zmq header structure */
|
@ -9,7 +9,7 @@
|
||||
#include <type_traits>
|
||||
#include <vector>
|
||||
|
||||
#include "TypeTraits.h"
|
||||
#include "sls/TypeTraits.h"
|
||||
|
||||
namespace sls {
|
||||
|
@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "sls_detector_defs.h"
|
||||
#include "sls/sls_detector_defs.h"
|
||||
|
||||
#include <cstdio>
|
||||
#include <fstream>
|
@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
/*Utility to log to console*/
|
||||
|
||||
#include "ansi.h" //Colors
|
||||
#include "sls/ansi.h" //Colors
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <sys/time.h>
|
@ -16,7 +16,7 @@
|
||||
|
||||
#ifdef __cplusplus
|
||||
// C++ includes
|
||||
#include "sls_detector_exceptions.h"
|
||||
#include "sls/sls_detector_exceptions.h"
|
||||
#include <algorithm>
|
||||
#include <bitset>
|
||||
#include <chrono>
|
||||
@ -491,7 +491,7 @@ typedef struct {
|
||||
#endif
|
||||
|
||||
// #ifndef MYROOT
|
||||
// #include "sls_detector_funcs.h"
|
||||
// #include "sls/sls_detector_funcs.h"
|
||||
// #endif
|
||||
|
||||
#ifdef __cplusplus
|
Reference in New Issue
Block a user