Initial Import
[profile/ivi/clutter-toys.git] / attic / fluttr / libnflick / nflick-auth-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 __NFLICKAUTHWORKER_H__
25 #define __NFLICKAUTHWORKER_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-gft-response.h"
33 #include "nflick-types.h"
34
35 struct                          _NFlickAuthWorker
36 {
37         NFlickWorker Parent;
38         NFlickAuthWorkerPrivate *Private;
39 };
40
41 struct                          _NFlickAuthWorkerClass 
42 {
43         NFlickWorkerClass ParentClass;
44 };
45
46 GType                           nflick_auth_worker_get_type (void);
47
48 NFlickAuthWorker*               nflick_auth_worker_new (const gchar *minitoken);
49
50 #endif