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


#include <QObject>
#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