-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathepr_dataset.h
53 lines (45 loc) · 1.68 KB
/
epr_dataset.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* $Id: epr_dataset.h,v 1.1.1.1 2004-10-28 19:22:22 norman Exp $
*
* Copyright (C) 2002 by Brockmann Consult (info@brockmann-consult.de)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation. This program is distributed in the hope it will
* be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef EPR_DATASET_H_INCL
#define EPR_DATASET_H_INCL
#ifdef __cplusplus
extern "C"
{
#endif
/**
* @todo add docu here...
*/
EPR_SDatasetId* epr_create_dataset_id(EPR_SProductId* product_id,
const EPR_SDSD* dsd,
const char* dataset_name,
const struct RecordDescriptor* record_info_ref,
const char* dsd_name,
const char* description);
/**
* Release the memory allocated through a dataset ID.
*
* @param product_id the file identifier, if <code>NULL</code> the function
* immediately returns
* @see epr_create_dataset_id
*/
void epr_free_dataset_id(EPR_SDatasetId* dataset_id);
EPR_SPtrArray* epr_create_dataset_ids(EPR_SProductId* product_id);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif
/* #ifndef EPR_DATASET_H_INCL */