Turi Create  4.0
all_operators.hpp
1 /* Copyright © 2017 Apple Inc. All rights reserved.
2  *
3  * Use of this source code is governed by a BSD-3-clause license that can
4  * be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause
5  */
6 #ifndef TURI_SFRAME_QUERY_ALL_OPERATORS_H_
7 #define TURI_SFRAME_QUERY_ALL_OPERATORS_H_
8 
9 #include <core/storage/query_engine/operators/append.hpp>
10 #include <core/storage/query_engine/operators/binary_transform.hpp>
11 #include <core/storage/query_engine/operators/constant.hpp>
12 #include <core/storage/query_engine/operators/logical_filter.hpp>
13 #include <core/storage/query_engine/operators/project.hpp>
14 #include <core/storage/query_engine/operators/range.hpp>
15 #include <core/storage/query_engine/operators/sarray_source.hpp>
16 #include <core/storage/query_engine/operators/sframe_source.hpp>
17 #include <core/storage/query_engine/operators/transform.hpp>
18 #include <core/storage/query_engine/operators/generalized_transform.hpp>
19 #include <core/storage/query_engine/operators/union.hpp>
20 #include <core/storage/query_engine/operators/generalized_union_project.hpp>
21 #include <core/storage/query_engine/operators/reduce.hpp>
22 #ifdef TC_HAS_PYTHON
23 #include <core/storage/query_engine/operators/lambda_transform.hpp>
24 #endif
25 #include <core/storage/query_engine/operators/optonly_identity_operator.hpp>
26 #include <core/storage/query_engine/operators/ternary_operator.hpp>
27 
28 
29 #endif /* TURI_SFRAME_QUERY_ALL_OPERATORS_H_ */