Files
src_old/src/include/H5Fed.h
T
gsell 538b0989eb - iterators implemented/debugged
- traversal functions with iterators debugged for triangle meshes
2010-05-12 19:51:57 +00:00

70 lines
902 B
C

/*
Header file for declaring the H5Fed application programming
interface (API) in the C language.
Copyright 2006-2007
Paul Scherrer Institut, Villigen, Switzerland;
Benedikt Oswald;
Achim Gsell
All rights reserved.
Authors
Achim Gsell
Warning
This code is under development.
*/
#ifndef __H5FED_H
#define __H5FED_H
#include "H5.h"
#include "H5Fed_adjacency.h"
#include "H5Fed_inquiry.h"
#include "H5Fed_retrieve.h"
#include "H5Fed_store.h"
#include "H5Fed_tags.h"
/****** General routines *****************************************************/
h5_err_t
H5FedOpenMesh (
h5_file_t * const f,
const h5_id_t mesh_id,
const h5_oid_t mesh_type_id
);
h5_err_t
H5FedCloseMesh (
h5_file_t * const f
);
h5_err_t
H5FedSetLevel (
h5_file_t * f,
const h5_id_t level_id
);
h5_err_t
H5FedLinkMeshToStep (
h5_file_t * f,
const h5_id_t mesh_id
);
#endif