]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/seat-xremote.h
Load all users only when really needed
[sojka/lightdm.git] / src / seat-xremote.h
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 SEAT_XREMOTE_H_
13 #define SEAT_XREMOTE_H_
14
15 #include <glib-object.h>
16 #include "seat.h"
17
18 G_BEGIN_DECLS
19
20 #define SEAT_XREMOTE_TYPE (seat_xremote_get_type())
21 #define SEAT_XREMOTE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SEAT_XREMOTE_TYPE, SeatXRemote))
22
23 typedef struct
24 {
25     Seat               parent_instance;
26 } SeatXRemote;
27
28 typedef struct
29 {
30     SeatClass parent_class;
31 } SeatXRemoteClass;
32
33 GType seat_xremote_get_type (void);
34
35 G_END_DECLS
36
37 #endif /* SEAT_XREMOTE_H_ */