~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to mailcommon/metatype.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  Copyright 2009 Thomas McGuire <mcguire@kde.org>
3
 
 
4
 
  This library is free software; you can redistribute it and/or modify
5
 
  it under the terms of the GNU Library General Public License as published
6
 
  by the Free Software Foundation; either version 2 of the License or
7
 
  ( at your option ) version 3 or, at the discretion of KDE e.V.
8
 
  ( which shall act as a proxy as in section 14 of the GPLv3 ), any later version.
9
 
 
10
 
  This library is distributed in the hope that it will be useful,
11
 
  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
  Library General Public License for more details.
14
 
 
15
 
  You should have received a copy of the GNU Library General Public License
16
 
  along with this library; see the file COPYING.LIB.  If not, write to
17
 
  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18
 
  Boston, MA 02110-1301, USA.
19
 
*/
20
 
#ifndef MAILCOMMON_METATYPE_H
21
 
#define MAILCOMMON_METATYPE_H
22
 
 
23
 
#include <QObject>
24
 
#include <QList>
25
 
 
26
 
#include <QMetaType>
27
 
 
28
 
Q_DECLARE_METATYPE( QList<int> )
29
 
 
30
 
#endif