Lumiera  0.pre.03
»edit your freedom«
configentry.h
Go to the documentation of this file.
1 /*
2  CONFIGENTRY.h - single entries from configfiles
3 
4  Copyright (C) Lumiera.org
5  2008, Christian Thaeter <ct@pipapo.org>
6 
7  This program is free software; you can redistribute it and/or
8  modify it under the terms of the GNU General Public License as
9  published by the Free Software Foundation; either version 2 of
10  the License, or (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program; if not, write to the Free Software
19  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 
21 */
22 
23 
31 #ifndef COMMON_CONFIGENTRY_H
32 #define COMMON_CONFIGENTRY_H
33 
34 #include "common/configitem.h"
35 
36 #include <nobug.h>
37 
38 
39 
40 typedef struct lumiera_configentry_struct lumiera_configentry;
41 typedef lumiera_configentry* LumieraConfigentry;
42 
43 
45 {
46  lumiera_configitem entry;
47 };
48 
49 extern struct lumiera_configitem_vtable lumiera_configentry_funcs;
50 
51 
52 LumieraConfigitem
53 lumiera_configentry_new (LumieraConfigitem tmp);
54 
55 
56 LumieraConfigitem
57 lumiera_configentry_destroy (LumieraConfigitem self);
58 
59 #endif /*COMMON_CONFIGENTRY_H*/
60 /*
61 // Local Variables:
62 // mode: C
63 // c-file-style: "gnu"
64 // indent-tabs-mode: nil
65 // End:
66 */
Draft for a configuration system (2008).