author | andyq <andyq> | 2002-10-25 09:49:57 (UTC) |
---|---|---|
committer | andyq <andyq> | 2002-10-25 09:49:57 (UTC) |
commit | 4a2f6dd634aa277bca3818f090d691844e219f64 (patch) (side-by-side diff) | |
tree | 5b76af0178f93684e90f8ff2e8250f87c5eb2517 /noncore | |
parent | 1d314624759bf1b18977f0569643ea11473d84cf (diff) | |
download | opie-4a2f6dd634aa277bca3818f090d691844e219f64.zip opie-4a2f6dd634aa277bca3818f090d691844e219f64.tar.gz opie-4a2f6dd634aa277bca3818f090d691844e219f64.tar.bz2 |
Added a few fields for dependancy tracking
-rw-r--r-- | noncore/settings/aqpkg/package.h | 3 |
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 @@ -40,19 +40,21 @@ public: void setStatus( QString &s ); void setDescription( QString &d ); void setFilename( QString &f ); 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; } QString getVersion() { return version; } QString getStatus() { return status; } QString getDescription() { return description; } QString getFilename() { return filename; } + QString getDependancies() { return dependancies; } bool isInstalled(); bool isPackageStoredLocally() { return packageStoredLocally; } bool isInstalledToRoot() { return installedToRoot; } QString getInstalledVersion(); QString getInstalledPackageName(); @@ -70,11 +72,12 @@ private: QString description; QString filename; bool packageStoredLocally; bool installedToRoot; bool installed; bool differentVersionAvailable; + QString dependancies; Destination *installedTo; }; #endif |