~robert-ancell/lightdm/weston-compositor-merge

« back to all changes in this revision

Viewing changes to src/seat-weston.h

  • Committer: Robert Ancell
  • Date: 2012-07-05 04:55:42 UTC
  • Revision ID: robert.ancell@canonical.com-20120705045542-dd1dopowti68gtwm
First work on supporting a weston system compositor

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 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_WESTON_H_
 
13
#define _SEAT_WESTON_H_
 
14
 
 
15
#include <glib-object.h>
 
16
#include "seat.h"
 
17
 
 
18
G_BEGIN_DECLS
 
19
 
 
20
#define SEAT_WESTON_TYPE (seat_weston_get_type())
 
21
#define SEAT_WESTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SEAT_WESTON_TYPE, SeatWeston))
 
22
 
 
23
typedef struct SeatWestonPrivate SeatWestonPrivate;
 
24
 
 
25
typedef struct
 
26
{
 
27
    Seat               parent_instance;
 
28
    SeatWestonPrivate *priv;
 
29
} SeatWeston;
 
30
 
 
31
typedef struct
 
32
{
 
33
    SeatClass parent_class;
 
34
} SeatWestonClass;
 
35
 
 
36
GType seat_weston_get_type (void);
 
37
 
 
38
G_END_DECLS
 
39
 
 
40
#endif /* _SEAT_WESTON_H_ */