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

@ -6,13 +6,13 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include "Detector.h"
#include "ToString.h"
#include "network_utils.h"
#include "sls_detector_defs.h"
#include "sls/Detector.h"
#include "sls/ToString.h"
#include "sls/network_utils.h"
#include "sls/sls_detector_defs.h"
#include "typecaster.h"
#include "TimeHelper.h"
#include "sls/TimeHelper.h"
#include <array>
#include <chrono>
namespace py = pybind11;

View File

@ -3,13 +3,13 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include "Detector.h"
#include "ToString.h"
#include "network_utils.h"
#include "sls_detector_defs.h"
#include "sls/Detector.h"
#include "sls/ToString.h"
#include "sls/network_utils.h"
#include "sls/sls_detector_defs.h"
#include "typecaster.h"
#include "TimeHelper.h"
#include "sls/TimeHelper.h"
#include <array>
#include <chrono>
namespace py = pybind11;

View File

@ -6,7 +6,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
namespace py = pybind11;
void init_enums(py::module &m) {
py::class_<slsDetectorDefs> Defs(m, "slsDetectorDefs");

View File

@ -3,7 +3,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include "sls_detector_defs.h"
#include "sls/sls_detector_defs.h"
namespace py = pybind11;
void init_enums(py::module &m) {
py::class_<slsDetectorDefs> Defs(m, "slsDetectorDefs");

View File

@ -3,8 +3,8 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include "Detector.h"
#include "Result.h"
#include "sls/Detector.h"
#include "sls/Result.h"
#include "mythenFileIO.h"
#include <chrono>
#include <vector>

View File

@ -9,7 +9,7 @@ classes.
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include "network_utils.h"
#include "sls/network_utils.h"
namespace py = pybind11;
using sls::IpAddr;
using sls::MacAddr;

View File

@ -1,6 +1,6 @@
#pragma once
#include <pybind11/pybind11.h>
#include "Result.h"
#include "sls/Result.h"
// Add type_typecaster to pybind for our wrapper type
namespace pybind11 {
namespace detail {