NVIDIA DRIVE OS Linux SDK API Reference

5.1.12.0 Release

 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
NvSIPLVersion.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2019, 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 
30 {
31  std::uint32_t uMajor;
32  std::uint32_t uMinor;
33  std::uint32_t uPatch;
34 };
35 
36 #define NVSIPL_MAJOR_VER 1
37 #define NVSIPL_MINOR_VER 0
38 #define NVSIPL_PATCH_VER 0
44 void NvSIPLGetVersion(NvSIPLVersion& rVersion);
45 
48 } // namespace nvsipl
49 
50 #endif // NVSIPLVERSION_HPP
std::uint32_t uMinor
Holds the minor revision.
std::uint32_t uPatch
Holds the patch revision.
Holds the version information of NvSIPL Camera (libnvsipl.so) and NvSIPL Client (libnvsipl.so).
std::uint32_t uMajor
Holds the major revision.