Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 场景组合
8  * @date 2021/01/11
9  */
10 public class CFG_SUPPORTED_COMP extends NetSDKLib.SdkStructure{
11     
12     /**
13      * 场景组合项下支持的场景个数
14      */
15     public int nSupportedData;
16     
17     /**
18      * 场景组合项下支持的场景列表
19      */
20      public StringByteArrSixteen[] szSupportedData = (StringByteArrSixteen[])new StringByteArrSixteen().toArray(NetSDKLib.MAX_SUPPORTED_COMP_DATA);
21      
22      public CFG_SUPPORTED_COMP() {
23          for (int i = 0; i < szSupportedData.length; i++) {
24              szSupportedData[i] = new StringByteArrSixteen();
25             }
26      }
27 }