summaryrefslogtreecommitdiff
path: root/lib/SignatureType.h
blob: 270d6fef2c1d0bd60ec6a1ae6e14875106f9be39 (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
/*
* 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:
	enum Value {
		Gpg,
		Unknown
	};
};

} // End namespace PackageKit

#endif