mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-26 08:10:02 +02:00
18 lines
489 B
C++
18 lines
489 B
C++
// SPDX-License-Identifier: LGPL-3.0-or-other
|
|
// Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
#pragma once
|
|
#include "sls/sls_detector_defs.h"
|
|
using dt = slsDetectorDefs::detectorType;
|
|
using di = slsDetectorDefs::dacIndex;
|
|
using defs = slsDetectorDefs;
|
|
|
|
namespace test {
|
|
extern std::string hostname;
|
|
extern std::string detector_type;
|
|
extern dt type;
|
|
extern std::string my_ip;
|
|
extern decltype(defs::GET_ACTION) GET;
|
|
extern decltype(defs::PUT_ACTION) PUT;
|
|
|
|
} // namespace test
|