Initial Import
[profile/ivi/clutter-toys.git] / attic / fluttr / libnflick / nflick-photo-data.h
1 /******************************************************************************/
2 /*                                                                            */
3 /* GPL license, Copyright (c) 2005-2006 by:                                   */
4 /*                                                                            */
5 /* Authors:                                                                   */
6 /*      Michael Dominic K. <michaldominik@gmail.com>                          */
7 /*                                                                            */
8 /* This program is free software; you can redistribute it and/or modify it    */
9 /* under the terms of the GNU General Public License as published by the      */
10 /* Free Software Foundation; either version 2, or (at your option) any later  */
11 /* version.                                                                   */
12 /*                                                                            */
13 /* This program is distributed in the hope that it will be useful, but        */
14 /* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY */
15 /* or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License   */
16 /* for more details.                                                          */
17 /*                                                                            */
18 /* You should have received a copy of the GNU General Public License along    */
19 /* with this program; if not, write to the Free Software Foundation, Inc., 59 */
20 /* Temple Place - Suite 330, Boston, MA 02111-1307, USA.                      */
21 /*                                                                            */
22 /******************************************************************************/
23
24 #ifndef __NFLICKPHOTODATA_H__
25 #define __NFLICKPHOTODATA_H__
26
27 #include <gtk/gtk.h>
28 #include "nflick-types.h"
29
30 struct _NFlickPhotoData
31 {
32         gchar *Id;
33         gchar *Name;
34 };
35
36 GType                           nflick_photo_data_get_type (void);
37
38 NFlickPhotoData*                nflick_photo_data_copy (const NFlickPhotoData *self);
39
40 void                            nflick_photo_data_free (NFlickPhotoData *self);
41
42 NFlickPhotoData*                nflick_photo_data_new (const gchar *id, const gchar *name);
43
44 #endif