Initial Import
[profile/ivi/clutter-toys.git] / attic / aaina / libnflick / nflick-set-list-worker.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 __NFLICKSETLISTWORKER_H__
25 #define __NFLICKSETLISTWORKER_H__
26  
27 #include <gtk/gtk.h>
28 #include <libintl.h>
29 #include "nflick-worker.h"
30 #include "nflick-api-request.h"
31 #include "nflick-api-response.h"
32 #include "nflick-set-list-response.h"
33 #include "nflick-photo-list-response.h"
34 #include "nflick-photo-set.h"
35 #include "nflick-types.h"
36 #include "nflick-no-set-response.h"
37
38 struct                          _NFlickSetListWorker
39 {
40         NFlickWorker Parent;
41         NFlickSetListWorkerPrivate *Private;
42 };
43
44 struct                          _NFlickSetListWorkerClass 
45 {
46         NFlickWorkerClass ParentClass;
47 };
48
49 GType                           nflick_set_list_worker_get_type (void);
50
51 NFlickSetListWorker*            nflick_set_list_worker_new (const gchar *usernsid, const gchar *token);
52
53 GList*                          nflick_set_list_worker_take_list (NFlickSetListWorker *self);
54
55 #endif