NVIDIA DRIVE OS Linux SDK API Reference

5.2.3 Release
For Test and Development only
NvSIPLVersion.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2020, 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 #define NVSIPL_MAJOR_VER 1
43 #define NVSIPL_MINOR_VER 0
44 #define NVSIPL_PATCH_VER 0
51 void NvSIPLGetVersion(NvSIPLVersion& rVersion);
52 
55 } // namespace nvsipl
56 
57 #endif // NVSIPLVERSION_HPP
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
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