GIRAFFE Pipeline Reference Manual

gipaf.h
1/*
2 * This file is part of the GIRAFFE Pipeline
3 * Copyright (C) 2002-2019 European Southern Observatory
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef GIPAF_H
21#define GIPAF_H
22
23#include <cpl_macros.h>
24#include <cpl_propertylist.h>
25
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31
32typedef struct GiPaf GiPaf;
33
34GiPaf *giraffe_paf_new(const cxchar *name, const cxchar *type,
35 const cxchar *id, const cxchar *description);
36void giraffe_paf_delete(GiPaf *self);
37
38cxchar *giraffe_paf_get_name(const GiPaf *self);
39cxint giraffe_paf_set_name(GiPaf *self, const cxchar *name);
40
41cxchar *giraffe_paf_get_type(const GiPaf *self);
42cxint giraffe_paf_set_type(GiPaf *self, const cxchar *type);
43
44cxchar *giraffe_paf_get_id(const GiPaf *self);
45cxint giraffe_paf_set_id(GiPaf *self, const cxchar *id);
46
47cxchar *giraffe_paf_get_description(const GiPaf *self);
48cxint giraffe_paf_set_description(GiPaf *self, const cxchar *description);
49
50cpl_propertylist *giraffe_paf_get_properties(const GiPaf *self);
51cxint giraffe_paf_set_properties(GiPaf *self,
52 const cpl_propertylist *properties);
53
54cxint giraffe_paf_write(const GiPaf *self);
55
56
57#ifdef __cplusplus
58}
59#endif
60
61#endif /* GIPAF_H */

This file is part of the GIRAFFE Pipeline Reference Manual 2.16.12.
Documentation copyright © 2002-2006 European Southern Observatory.
Generated on Thu May 9 2024 20:22:58 by doxygen 1.9.6 written by Dimitri van Heesch, © 1997-2004