Turi Create  4.0
registration.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 TIMESERIES_REGISTRATIONS_H_
7 #define TIMESERIES_REGISTRATIONS_H_
8 
9 #include <model_server/lib/toolkit_class_macros.hpp>
10 #include <model_server/lib/toolkit_class_specification.hpp>
11 #include <model_server/lib/toolkit_function_specification.hpp>
12 
13 #include <model_server/extensions/timeseries/grouped_timeseries.hpp>
14 #include <model_server/extensions/timeseries/timeseries.hpp>
15 
16 namespace turi {
17 namespace timeseries {
18 
19 std::vector<turi::toolkit_class_specification>
20  get_toolkit_class_registration();
21 std::vector<turi::toolkit_function_specification>
22  get_toolkit_function_registration();
23 
24 }
25 }
26 #endif