NVIDIA DriveOS Linux NSR SDK API Reference

7.0.3.0 Release
NvSIPLVersion.hpp
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 #ifndef NVSIPLVERSION_HPP
13 #define NVSIPLVERSION_HPP
14 
15 #include <cstdint>
16 
17 namespace nvsipl
18 {
19 
38 {
39  uint32_t uMajor;
40  uint32_t uMinor;
41  uint32_t uPatch;
42 };
43 
44 constexpr uint32_t NVSIPL_MAJOR_VER = 1U;
45 constexpr uint32_t NVSIPL_MINOR_VER = 0U;
46 constexpr uint32_t NVSIPL_PATCH_VER = 0U;
56 void NvSIPLGetVersion(NvSIPLVersion& rVersion);
57 
60 } // namespace nvsipl
61 
62 #endif // NVSIPLVERSION_HPP
nvsipl::NVSIPL_PATCH_VER
constexpr uint32_t NVSIPL_PATCH_VER
Indicates the minor revision.
Definition: NvSIPLVersion.hpp:46
nvsipl::NvSIPLGetVersion
void NvSIPLGetVersion(NvSIPLVersion &rVersion)
Indicates the patch revision.
nvsipl::NvSIPLVersion::uMinor
uint32_t uMinor
Holds the major revision.
Definition: NvSIPLVersion.hpp:40
nvsipl::NvSIPLVersion::uMajor
uint32_t uMajor
Definition: NvSIPLVersion.hpp:39
nvsipl::NVSIPL_MINOR_VER
constexpr uint32_t NVSIPL_MINOR_VER
Indicates the major revision.
Definition: NvSIPLVersion.hpp:45
nvsipl::NVSIPL_MAJOR_VER
constexpr uint32_t NVSIPL_MAJOR_VER
Definition: NvSIPLVersion.hpp:44
nvsipl
Contains the classes and variables for implementation of SIPL.
Definition: NvSIPLCamera.hpp:44
nvsipl::NvSIPLVersion::uPatch
uint32_t uPatch
Holds the minor revision.
Definition: NvSIPLVersion.hpp:41
nvsipl::NvSIPLVersion
Holds the version information of NvSIPL Camera and NvSIPL Client.
Definition: NvSIPLVersion.hpp:37