~robert-ancell/lightdm/private-mir-connection-merge

« back to all changes in this revision

Viewing changes to src/xgreeter.h

  • Committer: Robert Ancell
  • Date: 2013-07-23 02:24:45 UTC
  • mfrom: (1723 trunk)
  • mto: This revision was merged to the branch mainline in revision 1741.
  • Revision ID: robert.ancell@canonical.com-20130723022445-gpaq8vtkp4hods7r
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 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 XGREETER_H_
 
13
#define XGREETER_H_
 
14
 
 
15
#include "greeter.h"
 
16
 
 
17
G_BEGIN_DECLS
 
18
 
 
19
#define XGREETER_TYPE (xgreeter_get_type())
 
20
#define XGREETER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), XGREETER_TYPE, XGreeter))
 
21
 
 
22
typedef struct XGreeterPrivate XGreeterPrivate;
 
23
 
 
24
typedef struct
 
25
{
 
26
    Greeter          parent_instance;
 
27
    XGreeterPrivate *priv;
 
28
} XGreeter;
 
29
 
 
30
typedef struct
 
31
{
 
32
    GreeterClass parent_class;
 
33
} XGreeterClass;
 
34
 
 
35
GType xgreeter_get_type (void);
 
36
 
 
37
XGreeter *xgreeter_new (void);
 
38
 
 
39
G_END_DECLS
 
40
 
 
41
#endif /* XGREETER_H_ */