1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2  * Copyright by The HDF Group.                                               *
3  * Copyright by the Board of Trustees of the University of Illinois.         *
4  * All rights reserved.                                                      *
5  *                                                                           *
6  * This file is part of HDF5.  The full HDF5 copyright notice, including     *
7  * terms governing use, modification, and redistribution, is contained in    *
8  * the COPYING file, which can be found at the root of the source code       *
9  * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.  *
10  * If you do not have access to either file, you may request a copy from     *
11  * help@hdfgroup.org.                                                        *
12  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
13 
14 package hdf.hdf5lib.structs;
15 
16 import java.io.Serializable;
17 
18 //Information struct for group (for H5Gget_info/H5Gget_info_by_name/H5Gget_info_by_idx)
19 public class H5_ih_info_t implements Serializable {
20     private static final long serialVersionUID = -142238015615462707L;
21     public long     index_size;     /* btree and/or list */
22     public long     heap_size;
23 
H5_ih_info_t(long index_size, long heap_size)24     H5_ih_info_t (long index_size, long heap_size)
25     {
26         this.index_size = index_size;
27         this.heap_size = heap_size;
28     }
29 }
30