Salome HOME
Ajout des properties
[modules/kernel.git] / src / HDFPersist / hdfi.h
index ebd133e27e392b2ff4a7ae60c4066b8aa71cc6eb..5bdc62da6ab178458bbbab9e8c364acb7a747e02 100644 (file)
@@ -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();