~ubuntu-branches/ubuntu/vivid/gnome-flashback/vivid

« back to all changes in this revision

Viewing changes to gnome-flashback/libend-session-dialog/flashback-end-session-dialog.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Shachnev
  • Date: 2014-09-19 17:09:43 UTC
  • Revision ID: package-import@ubuntu.com-20140919170943-oboafsedi6z69951
Tags: upstream-3.10.0
Import upstream version 3.10.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Copyright (C) 2014 Alberts Muktupāvels
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation, either version 3 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 
16
 */
 
17
 
 
18
#ifndef FLASHBACK_END_SESSION_DIALOG_H
 
19
#define FLASHBACK_END_SESSION_DIALOG_H
 
20
 
 
21
#include <glib-object.h>
 
22
 
 
23
G_BEGIN_DECLS
 
24
 
 
25
#define FLASHBACK_TYPE_END_SESSION_DIALOG (flashback_end_session_dialog_get_type ())
 
26
#define FLASHBACK_END_SESSION_DIALOG(o)   (G_TYPE_CHECK_INSTANCE_CAST ((o), FLASHBACK_TYPE_END_SESSION_DIALOG, FlashbackEndSessionDialog))
 
27
 
 
28
typedef struct _FlashbackEndSessionDialog        FlashbackEndSessionDialog;
 
29
typedef struct _FlashbackEndSessionDialogClass   FlashbackEndSessionDialogClass;
 
30
typedef struct _FlashbackEndSessionDialogPrivate FlashbackEndSessionDialogPrivate;
 
31
 
 
32
struct _FlashbackEndSessionDialog {
 
33
        GObject                            parent;
 
34
        FlashbackEndSessionDialogPrivate *priv;
 
35
};
 
36
 
 
37
struct _FlashbackEndSessionDialogClass {
 
38
    GObjectClass parent_class;
 
39
};
 
40
 
 
41
GType                      flashback_end_session_dialog_get_type (void);
 
42
FlashbackEndSessionDialog *flashback_end_session_dialog_new      (void);
 
43
 
 
44
G_END_DECLS
 
45
 
 
46
#endif