Skip to content

Commit 81f5799

Browse files
authored
Merge pull request #246 from bangerth/config
Introduce config.h.
2 parents 5ae6985 + cd5675e commit 81f5799

File tree

11 files changed

+39
-0
lines changed

11 files changed

+39
-0
lines changed

include/sampleflow/auxiliary_data.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#ifndef SAMPLEFLOW_AUXILIARY_DATA_H
1717
#define SAMPLEFLOW_AUXILIARY_DATA_H
1818

19+
#include <sampleflow/config.h>
20+
1921
#include <any>
2022
#include <map>
2123

include/sampleflow/concepts.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#ifndef SAMPLEFLOW_CONCEPTS_H
1717
#define SAMPLEFLOW_CONCEPTS_H
1818

19+
#include <sampleflow/config.h>
20+
1921
#include <concepts>
2022

2123
namespace SampleFlow

include/sampleflow/config.h

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// ---------------------------------------------------------------------
2+
//
3+
// Copyright (C) 2019 by the SampleFlow authors.
4+
//
5+
// This file is part of the SampleFlow library.
6+
//
7+
// The SampleFlow library is free software; you can use it, redistribute
8+
// it, and/or modify it under the terms of the GNU Lesser General
9+
// Public License as published by the Free Software Foundation; either
10+
// version 2.1 of the License, or (at your option) any later version.
11+
// The full text of the license can be found in the file LICENSE.md at
12+
// the top level directory of SampleFlow.
13+
//
14+
// ---------------------------------------------------------------------
15+
16+
#ifndef SAMPLEFLOW_CONFIG_H
17+
#define SAMPLEFLOW_CONFIG_H
18+
19+
20+
#endif

include/sampleflow/connections.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#ifndef SAMPLEFLOW_CONNECTIONS_H
1717
#define SAMPLEFLOW_CONNECTIONS_H
1818

19+
#include <sampleflow/config.h>
20+
1921
#include <sampleflow/concepts.h>
2022
#include <sampleflow/consumer.h>
2123
#include <sampleflow/producer.h>

include/sampleflow/consumer.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#ifndef SAMPLEFLOW_CONSUMER_H
1717
#define SAMPLEFLOW_CONSUMER_H
1818

19+
#include <sampleflow/config.h>
20+
1921
#include <sampleflow/auxiliary_data.h>
2022
#include <sampleflow/concepts.h>
2123
#include <sampleflow/producer.h>

include/sampleflow/element_access.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#ifndef SAMPLEFLOW_UTILITIES_H
1717
#define SAMPLEFLOW_UTILITIES_H
1818

19+
#include <sampleflow/config.h>
20+
1921
#include <sampleflow/concepts.h>
2022

2123
#include <cstddef>

include/sampleflow/filter.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#ifndef SAMPLEFLOW_FILTER_H
1717
#define SAMPLEFLOW_FILTER_H
1818

19+
#include <sampleflow/config.h>
20+
1921
#include <sampleflow/producer.h>
2022
#include <sampleflow/consumer.h>
2123
#include <sampleflow/concepts.h>

include/sampleflow/parallel_mode.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#define SAMPLEFLOW_PARALLEL_MODE_H
1818

1919

20+
#include <sampleflow/config.h>
2021

2122
namespace SampleFlow
2223
{

include/sampleflow/producer.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#ifndef SAMPLEFLOW_PRODUCER_H
1717
#define SAMPLEFLOW_PRODUCER_H
1818

19+
#include <sampleflow/config.h>
20+
1921
#include <sampleflow/auxiliary_data.h>
2022
#include <sampleflow/concepts.h>
2123

include/sampleflow/scope_exit.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
#define SAMPLEFLOW_SCOPE_EXIT_H
1818

1919

20+
#include <sampleflow/config.h>
21+
2022
#include <functional>
2123

2224
namespace SampleFlow

0 commit comments

Comments
 (0)