Edit data/Makefile.am, Makefile.am and configure.ac to pass make dist.
[mmediamanager.git] / src / mm-attribute.c
blobb3a6cb68e8778f2be85e41beecfedc685b3c9332
1 /* MManager - a Desktop wide manager for multimedia applications.
3 * Copyright (C) 2008 Cosimo Cecchi <cosimoc@gnome.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library 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 GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #include "mm-attribute.h"
23 #include <glib.h>
25 struct _MMAttribute {
26 char *id;
27 char *name;
28 char *description;
29 GType type;
32 /* public methods */
34 const char *
35 mm_attribute_get_name (MMAttribute *a)
37 return a->name;
40 const char *
41 mm_attribute_get_description (MMAttribute *a)
43 return a->description;
46 GType
47 mm_attribute_get_value_type (MMAttribute *a)
49 return a->type;
52 const char *
53 mm_attribute_get_id (MMAttribute *a)
55 return a->id;
58 void
59 mm_attribute_free (MMAttribute *a)
61 g_free (a->name);
62 g_free (a->description);
63 g_free (a->id);
65 g_slice_free (MMAttribute, a);
68 MMAttribute *
69 mm_attribute_new (GType type,
70 const char *id,
71 const char *name,
72 const char *description)
74 MMAttribute *a;
76 a = g_slice_new0 (MMAttribute);
77 a->id = g_strdup (id);
78 a->name = g_strdup (name);
79 a->description = g_strdup (description);
80 a->type = type;
82 return a;