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 TURI_UNITY_REGSTRATION_HPP_
7 #define TURI_UNITY_REGSTRATION_HPP_
8 
9 #include <model_server/lib/toolkit_class_registry.hpp>
10 #include <model_server/lib/toolkit_function_registry.hpp>
11 
12 namespace turi {
13 
14  void register_functions(toolkit_function_registry& registry);
15  void register_models(toolkit_class_registry& registry);
16 
17 }
18 
19 #endif