[svn-r3934] Purpose:
Code Update
Description:
Ported change from the 1.5 branch to the 1.4 branch where all HDF5
include files are in quotes instead of angle brackets:
#include "hdf5_file.h"
instead of
#include <hdf5_file.h>
Platforms tested:
Linux
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
* Creating a dataset attribute.
|
||||
*/
|
||||
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
#define FILE "dset.h5"
|
||||
|
||||
main() {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Creating and closing a dataset.
|
||||
*/
|
||||
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
#define FILE "dset.h5"
|
||||
|
||||
main() {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Creating and closing a file.
|
||||
*/
|
||||
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
#define FILE "file.h5"
|
||||
|
||||
main() {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Creating and closing a group.
|
||||
*/
|
||||
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
#define FILE "group.h5"
|
||||
|
||||
main() {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Creating groups using absolute and relative names.
|
||||
*/
|
||||
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
#define FILE "groups.h5"
|
||||
|
||||
main() {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Create two datasets within groups.
|
||||
*/
|
||||
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
#define FILE "groups.h5"
|
||||
|
||||
main() {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
|
||||
#define FILE "iterate.h5"
|
||||
#define FALSE 0
|
||||
#define FILE "iterate.h5"
|
||||
#define FALSE 0
|
||||
|
||||
/* 1-D dataset with fixed dimensions */
|
||||
#define SPACE1_NAME "Space1"
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
* under name /G/D and data is printed out.
|
||||
*/
|
||||
|
||||
#include<hdf5.h>
|
||||
#include "hdf5.h"
|
||||
|
||||
#define FILE1 "mount1.h5"
|
||||
#define FILE2 "mount2.h5"
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Writing and reading an existing dataset.
|
||||
*/
|
||||
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
#define FILE "dset.h5"
|
||||
|
||||
main() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
|
||||
|
||||
/* This program shows how to create and store references to the objects.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include <stdlib.h>
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
|
||||
#define FILE1 "trefer1.h5"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
|
||||
#define FILE1 "trefer1.h5"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
and selected elements data from the integer dataset.
|
||||
*/
|
||||
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
|
||||
#define filename "REF_REG.h5"
|
||||
#define dsetnamev "MATRIX"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include <stdlib.h>
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
|
||||
#define FILE2 "trefer2.h5"
|
||||
#define NPOINTS 10
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include <stdlib.h>
|
||||
#include <hdf5.h>
|
||||
#include "hdf5.h"
|
||||
|
||||
#define FILE2 "trefer2.h5"
|
||||
#define SPACE1_NAME "Space1"
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include<hdf5.h>
|
||||
#include "hdf5.h"
|
||||
|
||||
#define FILE "refere.h5"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user