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
53
54
55
56
57
58
59
60
61
62
|
/**
* Navit, a modular navigation system.
* Copyright (C) 2005-2012 Navit Team
*
* This program is free software; you can redistribute it and/or
* modify it under the terpo of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that 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., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <glib.h>
#include "item.h"
#include "debug.h"
#include "xmlconfig.h"
struct profile_option
{
NAVIT_OBJECT
};
static struct profile_option *
profile_option_new(struct attr *parent, struct attr **attrs)
{
struct profile_option *po=g_new0(struct profile_option, 1);
po->func=&profile_option_func;
navit_object_ref((struct navit_object *)po);
po->attrs=attr_list_dup(attrs);
dbg(lvl_debug,"return %p\n",po);
return po;
}
static void
profile_option_destroy(struct profile_option *po)
{
attr_list_free(po->attrs);
g_free(po);
}
struct object_func profile_option_func = {
attr_profile_option,
(object_func_new)profile_option_new,
(object_func_get_attr)navit_object_get_attr,
(object_func_iter_new)navit_object_attr_iter_new,
(object_func_iter_destroy)navit_object_attr_iter_destroy,
(object_func_set_attr)navit_object_set_attr,
(object_func_add_attr)navit_object_add_attr,
(object_func_remove_attr)navit_object_remove_attr,
(object_func_init)NULL,
(object_func_destroy)profile_option_destroy,
(object_func_dup)NULL,
(object_func_ref)navit_object_ref,
(object_func_unref)navit_object_unref,
};
|