summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/package.h
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/oipkg/package.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/package.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/noncore/unsupported/oipkg/package.h b/noncore/unsupported/oipkg/package.h
index 257d9c7..68090dc 100644
--- a/noncore/unsupported/oipkg/package.h
+++ b/noncore/unsupported/oipkg/package.h
@@ -25,5 +25,6 @@ class Package //: public QObject
- QString name() ;
- QString installName() ;
+ QString name();
+ QString installName();
bool installed();
+ bool otherInstalled();
@@ -48,2 +49,4 @@ class Package //: public QObject
void setLink(bool);
+ bool isOld();
+ bool hasVersions();
void parseIpkgFile( QString );
@@ -53,2 +56,6 @@ class Package //: public QObject
QString status();
+
+ QDict<Package>* getOtherVersions();
+ void setOtherVersions(QDict<Package>*);
+
public slots:
@@ -61,2 +68,4 @@ private:
QString _fileName;
+ bool _old;
+ bool _hasVersions;
bool _toProcess;
@@ -72,2 +81,3 @@ private:
QDict<QString> _values;
+ QDict<Package> *_versions;
bool _useFileName;