~dantti/apper/master

« back to all changes in this revision

Viewing changes to libshared/KpkRepoSig.h

  • Committer: Daniel Nicoletti
  • Date: 2011-07-27 21:02:31 UTC
  • Revision ID: git-v1:2fb51b7787e2e9d70d2085cc8181a12f4277b047
The idea of libshared, was for it to be static, as
this doesn't seem too simple as putting STATIC word
I'm renaming it to libapper so we don't have such a geniric
lib installed (as pointed by Kevin Kofler

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2008 by Daniel Nicoletti                                *
3
 
 *   dantti85-pk@yahoo.com.br                                              *
4
 
 *                                                                         *
5
 
 *   This program is free software; you can redistribute it and/or modify  *
6
 
 *   it under the terms of the GNU General Public License as published by  *
7
 
 *   the Free Software Foundation; either version 2 of the License, or     *
8
 
 *   (at your option) any later version.                                   *
9
 
 *                                                                         *
10
 
 *   This program 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         *
13
 
 *   GNU General Public License for more details.                          *
14
 
 *                                                                         *
15
 
 *   You should have received a copy of the GNU General Public License     *
16
 
 *   along with this program; see the file COPYING. If not, write to       *
17
 
 *   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,  *
18
 
 *   Boston, MA 02110-1301, USA.                                           *
19
 
 ***************************************************************************/
20
 
 
21
 
#ifndef KPK_REPO_SIG_H
22
 
#define KPK_REPO_SIG_H
23
 
 
24
 
#include <KDialog>
25
 
 
26
 
#include <Signature>
27
 
 
28
 
#include "ui_KpkRepoSig.h"
29
 
 
30
 
using namespace PackageKit;
31
 
 
32
 
class KpkRepoSig : public KDialog, Ui::KpkRepoSig
33
 
{
34
 
    Q_OBJECT
35
 
public:
36
 
    explicit KpkRepoSig(const Signature &info, bool modal = true, QWidget *parent = 0);
37
 
    ~KpkRepoSig();
38
 
};
39
 
 
40
 
#endif