From 4a2f6dd634aa277bca3818f090d691844e219f64 Mon Sep 17 00:00:00 2001
From: andyq <andyq>
Date: Fri, 25 Oct 2002 09:49:57 +0000
Subject: Added a few fields for dependancy tracking

---
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;
 };
--
cgit v0.9.0.2