summaryrefslogtreecommitdiffstats
path: root/src/H5Mprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-03-12 21:04:53 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-03-12 21:04:53 (GMT)
commite4d89c2cd635e38c379a93a569dce473d66e69f4 (patch)
tree73173c110fe74a679cd3a63060831fd42536986d /src/H5Mprivate.h
parent4e295e1fdaeb1e73ed505482013b000bb62269be (diff)
downloadhdf5-e4d89c2cd635e38c379a93a569dce473d66e69f4.zip
hdf5-e4d89c2cd635e38c379a93a569dce473d66e69f4.tar.gz
hdf5-e4d89c2cd635e38c379a93a569dce473d66e69f4.tar.bz2
[svn-r319] Removed H5M API from code
Diffstat (limited to 'src/H5Mprivate.h')
-rw-r--r--src/H5Mprivate.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/H5Mprivate.h b/src/H5Mprivate.h
deleted file mode 100644
index faee39a..0000000
--- a/src/H5Mprivate.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/****************************************************************************
- * NCSA HDF *
- * Software Development Group *
- * National Center for Supercomputing Applications *
- * University of Illinois at Urbana-Champaign *
- * 605 E. Springfield, Champaign IL 61820 *
- * *
- * For conditions of distribution and use, see the accompanying *
- * hdf/COPYING file. *
- * *
- ****************************************************************************/
-
-/*
- * This file contains macros & information for meta-objects
- */
-#ifndef _H5Mprivate_H
-#define _H5Mprivate_H
-
-#include <H5Mpublic.h> /*include Public Definitions */
-
-/* Private headers needed by this file */
-#include <H5private.h>
-
-/*
- * A function table record for accessing interfaces which use the "meta"
- * interface to create/open/close objects.
- */
-typedef struct meta_func_t {
- group_t type; /*object type this interface is for*/
- hid_t (*create) (hid_t, group_t, const char *);/*object creation function*/
- hid_t (*access) (hid_t); /*object access function*/
- hid_t (*copy) (hid_t); /*object copy function*/
- hid_t (*find_name) (hid_t, group_t, const char *);/*find first object*/
- uint32 (*name_len) (hid_t); /*get length of object name*/
- herr_t (*get_name) (hid_t, char *); /*get object name*/
- herr_t (*set_name) (hid_t, const char *); /*set object name*/
- hid_t (*search) (hid_t, group_t, const char *);/*search for list of objects*/
- hid_t (*index) (hid_t, group_t, uint32);/*get the OID for the n'th object*/
- herr_t (*flush) (hid_t); /*flush the object to disk*/
- herr_t (*delete) (hid_t); /*delete an object from file*/
- hid_t (*get_parent) (hid_t); /*get the parent object of an object*/
- hid_t (*get_file) (hid_t); /*get the file ID of an object*/
- herr_t (*close) (hid_t); /*end access to an object*/
-} meta_func_t;
-
-/* Private functions, not part of the publicly documented API */
-#endif