summaryrefslogtreecommitdiff
path: root/lib/Provides.h
blob: 47a022084d3274ddb3b3e0a5288c60e8a13d77e2 (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
/*
* 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 PROVIDES_H
#define PROVIDES_H

#include <QtCore>

#include "Enum.h"

namespace PackageKit {

class Provides : public QObject {

	Q_OBJECT
	Q_ENUMS(Value)

public:
	enum Value {
		Any,
		Modalias,
		Codec,
		Mimetype,
		Font,
		Unknown
	};
};

} // End namespace PackageKit

#endif