summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/package.h
authorandyq <andyq>2002-10-25 09:49:57 (UTC)
committer andyq <andyq>2002-10-25 09:49:57 (UTC)
commit4a2f6dd634aa277bca3818f090d691844e219f64 (patch) (side-by-side diff)
tree5b76af0178f93684e90f8ff2e8250f87c5eb2517 /noncore/settings/aqpkg/package.h
parent1d314624759bf1b18977f0569643ea11473d84cf (diff)
downloadopie-4a2f6dd634aa277bca3818f090d691844e219f64.zip
opie-4a2f6dd634aa277bca3818f090d691844e219f64.tar.gz
opie-4a2f6dd634aa277bca3818f090d691844e219f64.tar.bz2
Added a few fields for dependancy tracking
Diffstat (limited to 'noncore/settings/aqpkg/package.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/package.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/settings/aqpkg/package.h b/noncore/settings/aqpkg/package.h
index 2f2a165..56ef874 100644
--- a/noncore/settings/aqpkg/package.h
+++ b/noncore/settings/aqpkg/package.h
@@ -43,6 +43,7 @@ public:
void setPackageStoredLocally( bool local ) { packageStoredLocally = local; }
void setInstalledToRoot( bool root ) { installedToRoot = root; }
void setInstalledTo( Destination *d ) { installedTo = d; }
+ void setDependancies( QString &deps ) { dependancies = deps; }
Package *getLocalPackage() { return localPackage; }
QString getPackageName() { return packageName; }
@@ -50,6 +51,7 @@ public:
QString getStatus() { return status; }
QString getDescription() { return description; }
QString getFilename() { return filename; }
+ QString getDependancies() { return dependancies; }
bool isInstalled();
bool isPackageStoredLocally() { return packageStoredLocally; }
@@ -73,6 +75,7 @@ private:
bool installedToRoot;
bool installed;
bool differentVersionAvailable;
+ QString dependancies;
Destination *installedTo;
};