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
28 extern "C" {
29 #endif
30 
31 
32 typedef struct GiPaf GiPaf;
33 
34 GiPaf *giraffe_paf_new(const cxchar *name, const cxchar *type,
35  const cxchar *id, const cxchar *description);
36 void giraffe_paf_delete(GiPaf *self);
37 
38 cxchar *giraffe_paf_get_name(const GiPaf *self);
39 cxint giraffe_paf_set_name(GiPaf *self, const cxchar *name);
40 
41 cxchar *giraffe_paf_get_type(const GiPaf *self);
42 cxint giraffe_paf_set_type(GiPaf *self, const cxchar *type);
43 
44 cxchar *giraffe_paf_get_id(const GiPaf *self);
45 cxint giraffe_paf_set_id(GiPaf *self, const cxchar *id);
46 
47 cxchar *giraffe_paf_get_description(const GiPaf *self);
48 cxint giraffe_paf_set_description(GiPaf *self, const cxchar *description);
49 
50 cpl_propertylist *giraffe_paf_get_properties(const GiPaf *self);
51 cxint giraffe_paf_set_properties(GiPaf *self,
52  const cpl_propertylist *properties);
53 
54 cxint 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.10.
Documentation copyright © 2002-2006 European Southern Observatory.
Generated on Thu Dec 15 2022 21:18:51 by doxygen 1.9.1 written by Dimitri van Heesch, © 1997-2004