summaryrefslogtreecommitdiff
path: root/lib/SignatureType.h
blob: ff9ca7f704cc2fd3398c45b48a120f2b90bade21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* Copyright (C) 2007 Adrien Bustany <madcat@mymadcat.com>
*
* Licensed under the GNU General Public License Version 2
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 See MA 02111-1307, USA.
*
*/

#ifndef SIGNATURETYPE_H
#define SIGNATURETYPE_H

#include <QtCore>

#include "Enum.h"

namespace PackageKit {

class SignatureType : public QObject {

	Q_OBJECT
	Q_ENUMS(Value)

public:
typedef enum {
	Gpg,
	Unknown
} Value;

};

} // End namespace PackageKit

#endif