aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Qt4/qpackageproperties.h')
-rw-r--r--src/Qt4/qpackageproperties.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/Qt4/qpackageproperties.h b/src/Qt4/qpackageproperties.h
new file mode 100644
index 0000000..bf20cfb
--- /dev/null
+++ b/src/Qt4/qpackageproperties.h
@@ -0,0 +1,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 \ No newline at end of file