NVIDIA DRIVE OS Linux SDK API Reference

5.2.6 Release
For Test and Development only
NvSIPLVersion.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved.
3  *
4  * NVIDIA CORPORATION and its licensors retain all intellectual property
5  * and proprietary rights in and to this software, related documentation
6  * and any modifications thereto. Any use, reproduction, disclosure or
7  * distribution of this software and related documentation without an express
8  * license agreement from NVIDIA CORPORATION is strictly prohibited.
9  */
10 #ifndef NVSIPLVERSION_HPP
11 #define NVSIPLVERSION_HPP
12 
13 #include <cstdint>
14 
15 namespace nvsipl
16 {
17 
36 {
37  uint32_t uMajor;
38  uint32_t uMinor;
39  uint32_t uPatch;
40 };
41 
42 constexpr uint32_t NVSIPL_MAJOR_VER = 1U;
43 constexpr uint32_t NVSIPL_MINOR_VER = 0U;
44 constexpr uint32_t NVSIPL_PATCH_VER = 0U;
51 void NvSIPLGetVersion(NvSIPLVersion& rVersion);
52 
55 } // namespace nvsipl
56 
57 #endif // NVSIPLVERSION_HPP
nvsipl::NVSIPL_PATCH_VER
constexpr uint32_t NVSIPL_PATCH_VER
Indicates the patch revision.
Definition: NvSIPLVersion.hpp:44
nvsipl::NvSIPLGetVersion
void NvSIPLGetVersion(NvSIPLVersion &rVersion)
Gets the library version.
nvsipl::NvSIPLVersion::uMinor
uint32_t uMinor
Holds the minor revision.
Definition: NvSIPLVersion.hpp:38
nvsipl::NvSIPLVersion::uMajor
uint32_t uMajor
Holds the major revision.
Definition: NvSIPLVersion.hpp:37
nvsipl::NVSIPL_MINOR_VER
constexpr uint32_t NVSIPL_MINOR_VER
Indicates the minor revision.
Definition: NvSIPLVersion.hpp:43
nvsipl::NVSIPL_MAJOR_VER
constexpr uint32_t NVSIPL_MAJOR_VER
Indicates the major revision.
Definition: NvSIPLVersion.hpp:42
nvsipl
Contains the classes and variables for implementation of SIPL.
Definition: INvSiplControlAuto.hpp:33
nvsipl::NvSIPLVersion::uPatch
uint32_t uPatch
Holds the patch revision.
Definition: NvSIPLVersion.hpp:39
nvsipl::NvSIPLVersion
Holds the version information of NvSIPL Camera and NvSIPL Client.
Definition: NvSIPLVersion.hpp:35