~ubuntu-branches/ubuntu/wily/gpaste/wily

« back to all changes in this revision

Viewing changes to src/libgpaste/core/gpaste-text-item-private.h

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2015-06-19 11:05:16 UTC
  • mfrom: (6.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20150619110516-h53wz9xi9i4k3smb
Tags: 3.16.2.1-1
* Imported Upstream version 3.16.2.1 (Closes: #789255)
* gpaste-applet does not need a manpage - upstream dropped it
* Build-Depends gtk >= 3.16
* Depends gnome-shell >= 3.16
* Major API changes, bump soname to 3 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *      This file is part of GPaste.
3
 
 *
4
 
 *      Copyright 2011-2013 Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
5
 
 *
6
 
 *      GPaste is free software: you can redistribute it and/or modify
7
 
 *      it under the terms of the GNU General Public License as published by
8
 
 *      the Free Software Foundation, either version 3 of the License, or
9
 
 *      (at your option) any later version.
10
 
 *
11
 
 *      GPaste is distributed in the hope that it will be useful,
12
 
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *      GNU General Public License for more details.
15
 
 *
16
 
 *      You should have received a copy of the GNU General Public License
17
 
 *      along with GPaste.  If not, see <http://www.gnu.org/licenses/>.
18
 
 */
19
 
 
20
 
#ifndef __G_PASTE_TEXT_ITEM_PRIVATE_H__
21
 
#define __G_PASTE_TEXT_ITEM_PRIVATE_H__
22
 
 
23
 
#include "gpaste-item-private.h"
24
 
 
25
 
#include <gpaste-text-item.h>
26
 
 
27
 
G_BEGIN_DECLS
28
 
 
29
 
struct _GPasteTextItem
30
 
{
31
 
    GPasteItem parent_instance;
32
 
};
33
 
 
34
 
struct _GPasteTextItemClass
35
 
{
36
 
    GPasteItemClass parent_class;
37
 
};
38
 
 
39
 
G_END_DECLS
40
 
 
41
 
#endif /*__G_PASTE_TEXT_ITEM_PRIVATE_H__*/