summaryrefslogtreecommitdiff
path: root/lib/Info.h
blob: 8bb228b2cb24857e57682d09c9ae98ef315cd11e (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* Copyright (C) 2007 Adrien Bustany <madcat@mymadcat.com>
* Copyright (C) 2008 Daniel Nicoletti <dantti85-pk@yahoo.com.br>
*
* 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 INFO_H
#define INFO_H

#include <QtCore>

#include "Enum.h"

namespace PackageKit {

class Info : public QObject {

	Q_OBJECT
	Q_ENUMS(Value)

public:
typedef enum {
	Installed,
	Available,
	Low,
	Normal,
	Important,
	Security,
	Bugfix,
	Enhancement,
	Blocked,
	Downloading,
	Updating,
	Installing,
	Removing,
	Cleanup,
	Obsoleting,
	Unknown
} Value;

};

} // End namespace PackageKit

#endif