summaryrefslogtreecommitdiff
path: root/lib/Groups.h
blob: fe4e28f79b3121d286e464ed251c28dc7c1191a8 (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
52
53
54
55
56
57
58
59
60
61
62
63
/*
* 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 GROUPS_H
#define GROUPS_H

#include <QtCore>

#include "Enum.h"

namespace PackageKit {

class Groups : public QObject {

	Q_OBJECT
	Q_ENUMS(Value)

public:
typedef enum {
	Accessibility,
	Accessories,
	Admin_tools,
	Communication,
	Desktop_gnome,
	Desktop_kde,
	Desktop_other,
	Desktop_xfce,
	Education,
	Fonts,
	Games,
	Graphics,
	Internet,
	Legacy,
	Localization,
	Maps,
	Multimedia,
	Network,
	Office,
	Other,
	Power_management,
	Programming,
	Publishing,
	Repos,
	Security,
	Servers,
	System,
	Virtualization,
	Unknown
} Value;

};

} // End namespace PackageKit

#endif