~lightdm-team/lightdm/1.4

« back to all changes in this revision

Viewing changes to src/guest-manager.h

  • Committer: Robert Ancell
  • Date: 2011-06-03 03:57:48 UTC
  • Revision ID: robert.ancell@canonical.com-20110603035748-c1cg3zst82wpf2mm
Start laying foundations for guest accounts

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2010-2011 Robert Ancell.
 
3
 * Author: Robert Ancell <robert.ancell@canonical.com>
 
4
 * 
 
5
 * This program is free software: you can redistribute it and/or modify it under
 
6
 * the terms of the GNU General Public License as published by the Free Software
 
7
 * Foundation, either version 3 of the License, or (at your option) any later
 
8
 * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
 
9
 * license.
 
10
 */
 
11
 
 
12
#ifndef _GUEST_MANAGER_H_
 
13
#define _GUEST_MANAGER_H_
 
14
 
 
15
#include <glib-object.h>
 
16
 
 
17
G_BEGIN_DECLS
 
18
 
 
19
#define GUEST_MANAGER_TYPE (guest_manager_get_type())
 
20
#define GUEST_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GUEST_MANAGER_TYPE, GuestManager))
 
21
 
 
22
typedef struct GuestManagerPrivate GuestManagerPrivate;
 
23
 
 
24
typedef struct
 
25
{
 
26
    GObject              parent_instance;
 
27
    GuestManagerPrivate *priv;  
 
28
} GuestManager;
 
29
 
 
30
typedef struct
 
31
{
 
32
    GObjectClass parent_class;
 
33
} GuestManagerClass;
 
34
 
 
35
GType guest_manager_get_type (void);
 
36
 
 
37
GuestManager *guest_manager_new (GKeyFile *config);
 
38
 
 
39
gboolean guest_manager_get_is_enabled (GuestManager *manager);
 
40
 
 
41
gchar *guest_manager_add_account (GuestManager *manager);
 
42
 
 
43
void guest_manager_remove_account (GuestManager *manager, const gchar *username);
 
44
 
 
45
G_END_DECLS
 
46
 
 
47
#endif /* _GUEST_MANAGER_H_ */