libvisiontransfer  10.6.0
parametertransferdata.h
1 /*******************************************************************************
2  * Copyright (c) 2023 Allied Vision Technologies GmbH
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *******************************************************************************/
14 
15 #ifndef VISIONTRANSFER_PARAMETERTRANSFERDATA_H
16 #define VISIONTRANSFER_PARAMETERTRANSFERDATA_H
17 
18 namespace visiontransfer {
19 namespace internal {
20 
21 #pragma pack(push,1)
22 struct TransportParameterInfo {
23  uint32_t id = 0;
24  uint32_t type = 0;
25  uint32_t flags = 0;
26  ParameterInfo::ParameterValue value = {0};
27  ParameterInfo::ParameterValue min = {0};
28  ParameterInfo::ParameterValue max = {0};
29  ParameterInfo::ParameterValue inc = {0};
30 };
31 #pragma pack(pop)
32 
33 }} // namespace
34 
35 #endif
36 
Allied Vision