From 3f655e330bab09172a8e665d03bcb274a1df3a11 Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Fri, 19 Jul 2019 20:45:03 +0200 Subject: [PATCH] SDK: Add convenience header --- fairmq/SDK.h | 19 +++++++++++++++++++ fairmq/sdk/CMakeLists.txt | 1 + test/sdk/TopologyFixture.h | 2 +- 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 fairmq/SDK.h diff --git a/fairmq/SDK.h b/fairmq/SDK.h new file mode 100644 index 00000000..a46d865b --- /dev/null +++ b/fairmq/SDK.h @@ -0,0 +1,19 @@ +/******************************************************************************** + * Copyright (C) 2019 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH * + * * + * This software is distributed under the terms of the * + * GNU Lesser General Public Licence (LGPL) version 3, * + * copied verbatim in the file "LICENSE" * + ********************************************************************************/ + +#ifndef FAIR_MQ_SDK_H +#define FAIR_MQ_SDK_H + +// IWYU pragma: begin_exports +#include +#include +#include +#include +// IWYU pragma: end_exports + +#endif // FAIR_MQ_SDK_H diff --git a/fairmq/sdk/CMakeLists.txt b/fairmq/sdk/CMakeLists.txt index 299d5da1..b9a1a317 100644 --- a/fairmq/sdk/CMakeLists.txt +++ b/fairmq/sdk/CMakeLists.txt @@ -14,6 +14,7 @@ configure_file(DDSInfo.h.in ${CMAKE_CURRENT_BINARY_DIR}/DDSInfo.h @ONLY) set(target SDK) set(SDK_PUBLIC_HEADER_FILES + ../SDK.h DDSEnvironment.h ${CMAKE_CURRENT_BINARY_DIR}/DDSInfo.h DDSSession.h diff --git a/test/sdk/TopologyFixture.h b/test/sdk/TopologyFixture.h index 8aab2475..08f2516e 100644 --- a/test/sdk/TopologyFixture.h +++ b/test/sdk/TopologyFixture.h @@ -10,7 +10,7 @@ #define FAIR_MQ_TEST_TOPOLOGYFIXTURE #include "TestEnvironment.h" -#include +#include #include #include