Turi Create  4.0
python_model.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_PYTHON_MODEL_ADDONE
7 #define TURI_PYTHON_MODEL_ADDONE
8 #include <vector>
9 #include <model_server/lib/toolkit_function_specification.hpp>
10 #include <model_server/lib/toolkit_class_specification.hpp>
11 
12 namespace turi {
13 namespace python_model {
14 
15 /**
16  * Obtains the registration for the PythonModel.
17  */
18 std::vector<toolkit_class_specification> get_toolkit_class_registration();
19 
20 } // namespace python_model
21 } // namespace turi
22 #endif