X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FHDFPersist%2Fhdfi.h;h=5bdc62da6ab178458bbbab9e8c364acb7a747e02;hb=832cc15e0ce6f2db6477850f9f076bfad6d3753b;hp=ebd133e27e392b2ff4a7ae60c4066b8aa71cc6eb;hpb=4655b0b0eb5345da6a86852021014b0cbae2ad30;p=modules%2Fkernel.git diff --git a/src/HDFPersist/hdfi.h b/src/HDFPersist/hdfi.h index ebd133e27..5bdc62da6 100644 --- a/src/HDFPersist/hdfi.h +++ b/src/HDFPersist/hdfi.h @@ -1,3 +1,27 @@ +// Copyright (C) 2005 OPEN CASCADE, CEA, EDF R&D, LEG +// PRINCIPIA R&D, EADS CCR, Lip6, BV, CEDRAT +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License. +// +// This library is distributed in the hope that it will be useful +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// +/*---------------------------------------------------------------------- + SALOME HDFPersist : implementation of HDF persitent ( save/ restore ) + File : hdfi.h + Module : SALOME + ----------------------------------------------------------------------*/ + #ifndef HDFI_H #define HDFI_H @@ -40,7 +64,7 @@ hdf_err HDFdatasetClose(hdf_idt id); extern hdf_idt HDFdatasetCreate(hdf_idt pid,char *name,hdf_type type, - hdf_size *dimd, int ndim); + hdf_size *dimd, int ndim, hdf_byte_order order); extern hdf_err HDFdatasetWrite(hdf_idt id, void *val); @@ -60,6 +84,9 @@ hdf_err HDFdatasetGetDim(hdf_idt id,hdf_size dim[]); extern int HDFdatasetGetSize(hdf_idt id); +extern +hdf_byte_order HDFdatasetGetOrder(hdf_idt id); + /* Attribute interface */ extern hdf_idt HDFattrOpen(hdf_idt pid,char *name); @@ -68,7 +95,7 @@ extern hdf_err HDFattrClose(hdf_idt id); extern -hdf_idt HDFattrCreate(hdf_idt pid,char *name,hdf_type type); +hdf_idt HDFattrCreate(hdf_idt pid,char *name,hdf_type type, size_t size); extern hdf_err HDFattrWrite(hdf_idt id,void *val); @@ -76,6 +103,12 @@ hdf_err HDFattrWrite(hdf_idt id,void *val); extern hdf_err HDFattrRead(hdf_idt id,void *val); +extern +hdf_type HDFattrGetType(hdf_idt id); + +extern +hdf_type HDFattrGetSize(hdf_idt id); + /* HDF Tools */ extern void HDFerrorModeLock();