Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.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 }