Files
ANSLibs/OpenVINO/runtime/include/openvino/frontend/tensorflow_lite/visibility.hpp

21 lines
738 B
C++
Raw Normal View History

// Copyright (C) 2018-2025 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#pragma once
#include "openvino/frontend/exception.hpp"
#ifdef OPENVINO_STATIC_LIBRARY
# define TENSORFLOW_LITE_FRONTEND_API
# define TENSORFLOW_LITE_FRONTEND_C_API
#else
# ifdef openvino_tensorflow_lite_frontend_EXPORTS
# define TENSORFLOW_LITE_FRONTEND_API OPENVINO_CORE_EXPORTS
# define TENSORFLOW_LITE_FRONTEND_C_API OPENVINO_EXTERN_C OPENVINO_CORE_EXPORTS
# else
# define TENSORFLOW_LITE_FRONTEND_API OPENVINO_CORE_IMPORTS
# define TENSORFLOW_LITE_FRONTEND_C_API OPENVINO_EXTERN_C OPENVINO_CORE_IMPORTS
# endif // openvino_tensorflow_lite_frontend_EXPORTS
#endif // OPENVINO_STATIC_LIBRARY