Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions include/sampleflow/auxiliary_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef SAMPLEFLOW_AUXILIARY_DATA_H
#define SAMPLEFLOW_AUXILIARY_DATA_H

#include <sampleflow/config.h>

#include <any>
#include <map>

Expand Down
2 changes: 2 additions & 0 deletions include/sampleflow/concepts.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef SAMPLEFLOW_CONCEPTS_H
#define SAMPLEFLOW_CONCEPTS_H

#include <sampleflow/config.h>

#include <concepts>

namespace SampleFlow
Expand Down
20 changes: 20 additions & 0 deletions include/sampleflow/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// ---------------------------------------------------------------------
//
// Copyright (C) 2019 by the SampleFlow authors.
//
// This file is part of the SampleFlow library.
//
// The SampleFlow library is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE.md at
// the top level directory of SampleFlow.
//
// ---------------------------------------------------------------------

#ifndef SAMPLEFLOW_CONFIG_H
#define SAMPLEFLOW_CONFIG_H


#endif
2 changes: 2 additions & 0 deletions include/sampleflow/connections.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef SAMPLEFLOW_CONNECTIONS_H
#define SAMPLEFLOW_CONNECTIONS_H

#include <sampleflow/config.h>

#include <sampleflow/concepts.h>
#include <sampleflow/consumer.h>
#include <sampleflow/producer.h>
Expand Down
2 changes: 2 additions & 0 deletions include/sampleflow/consumer.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef SAMPLEFLOW_CONSUMER_H
#define SAMPLEFLOW_CONSUMER_H

#include <sampleflow/config.h>

#include <sampleflow/auxiliary_data.h>
#include <sampleflow/concepts.h>
#include <sampleflow/producer.h>
Expand Down
2 changes: 2 additions & 0 deletions include/sampleflow/element_access.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef SAMPLEFLOW_UTILITIES_H
#define SAMPLEFLOW_UTILITIES_H

#include <sampleflow/config.h>

#include <sampleflow/concepts.h>

#include <cstddef>
Expand Down
2 changes: 2 additions & 0 deletions include/sampleflow/filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef SAMPLEFLOW_FILTER_H
#define SAMPLEFLOW_FILTER_H

#include <sampleflow/config.h>

#include <sampleflow/producer.h>
#include <sampleflow/consumer.h>
#include <sampleflow/concepts.h>
Expand Down
1 change: 1 addition & 0 deletions include/sampleflow/parallel_mode.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#define SAMPLEFLOW_PARALLEL_MODE_H


#include <sampleflow/config.h>

namespace SampleFlow
{
Expand Down
2 changes: 2 additions & 0 deletions include/sampleflow/producer.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef SAMPLEFLOW_PRODUCER_H
#define SAMPLEFLOW_PRODUCER_H

#include <sampleflow/config.h>

#include <sampleflow/auxiliary_data.h>
#include <sampleflow/concepts.h>

Expand Down
2 changes: 2 additions & 0 deletions include/sampleflow/scope_exit.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#define SAMPLEFLOW_SCOPE_EXIT_H


#include <sampleflow/config.h>

#include <functional>

namespace SampleFlow
Expand Down
2 changes: 2 additions & 0 deletions include/sampleflow/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef SAMPLEFLOW_TYPES_H
#define SAMPLEFLOW_TYPES_H

#include <sampleflow/config.h>

#include <cstddef>
#include <complex>

Expand Down
Loading