aboutsummaryrefslogtreecommitdiff
blob: bf20cfb94872f8fd4d2ffd80caa22d2313838b45 (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
#ifndef QPACKAGEPROPERTIES_H
#define QPACKAGEPROPERTIES_H

#include <QObject>

extern "C" {
#include "../packageproperties.h"
}


class QString;
class QStringList;

struct PackageProperties;
struct StringList;

namespace CppPortage {

class QListConverter;

class QPackageProperties : public QObject
{
    Q_OBJECT
public:
    QPackageProperties(QString slot, const QStringList keywords, const QStringList flags,
                       QStringList homepages,QObject *parent = 0);
    virtual ~QPackageProperties();

    const QString Slot();
    const QStringList Keywords();
    const QStringList Flags();
    const QStringList Homepages();
};
}
#endif