HiPipe  0.7.0
C++17 data pipeline with Python bindings.
stream.hpp
1 /****************************************************************************
2  * hipipe library
3  * Copyright (c) 2017, Cognexa Solutions s.r.o.
4  * Copyright (c) 2018, Iterait a.s.
5  * Author(s) Filip Matzner
6  *
7  * This file is distributed under the MIT License.
8  * See the accompanying file LICENSE.txt for the complete license agreement.
9  ****************************************************************************/
10 
11 #ifndef HIPIPE_CORE_STREAM_HPP
12 #define HIPIPE_CORE_STREAM_HPP
13 
15 
16 #include <hipipe/core/stream/batch_t.hpp>
17 #include <hipipe/core/stream/column_t.hpp>
18 #include <hipipe/core/stream/stream_t.hpp>
19 
20 #include <hipipe/core/stream/buffer.hpp>
21 #include <hipipe/core/stream/copy.hpp>
22 #include <hipipe/core/stream/create.hpp>
23 #include <hipipe/core/stream/drop.hpp>
24 #include <hipipe/core/stream/filter.hpp>
25 #include <hipipe/core/stream/for_each.hpp>
26 #include <hipipe/core/stream/generate.hpp>
27 #include <hipipe/core/stream/keep.hpp>
28 #include <hipipe/core/stream/pad.hpp>
29 #include <hipipe/core/stream/random_fill.hpp>
30 #include <hipipe/core/stream/rebatch.hpp>
31 #include <hipipe/core/stream/transform.hpp>
32 #include <hipipe/core/stream/unpack.hpp>
33 
34 #endif