NVIDIA DriveOS Linux NSR SDK API Reference

7.0.3.0 Release
Exports_1.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2018-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3  * SPDX-License-Identifier: LicenseRef-NvidiaProprietary
4  *
5  * NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
6  * property and proprietary rights in and to this material, related
7  * documentation and any modifications thereto. Any use, reproduction,
8  * disclosure or distribution of this material and related documentation
9  * without an express license agreement from NVIDIA CORPORATION or
10  * its affiliates is strictly prohibited.
11  */
12 
21 #ifndef DWVISUALIZATION_EXPORTS_H_
22 #define DWVISUALIZATION_EXPORTS_H_
23 
24 #include <dw/core/base/Exports.h>
25 
26 // clang-format off
27 #ifdef DW_VIZ_EXPORTS
28  #define DW_VIZ_API_PUBLIC __attribute__ ((visibility ("default")))
29  #define DW_VIZ_API_LOCAL __attribute__ ((visibility ("hidden")))
30 #else
31  #define DW_VIZ_API_PUBLIC
32  #define DW_VIZ_API_LOCAL
33 #endif
34 // clang-format on
35 
36 #endif // DW_VIZ_EXPORTS_H_