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