From 47cda1de3cfde56d8a8a69d535d38309bc2b7981 Mon Sep 17 00:00:00 2001
From: Mike Buland <eichlan@xagasoft.com>
Date: Fri, 8 Sep 2006 22:43:30 +0000
Subject: Added targets to the performs.

---
 src/perform.h | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/perform.h b/src/perform.h
index 5a961e2..add5a09 100644
--- a/src/perform.h
+++ b/src/perform.h
@@ -16,10 +16,18 @@ public:
 	void addParam( const char *sParam );
 	virtual Perform *duplicate( Build &bld, const std::string &cont ) = 0;
 	void copyData( Perform *pSrc, Build &bld, const std::string &cont );
+	std::string getTarget()
+	{
+		return sTarget;
+	}
+	void setTarget( std::string sTarget )
+	{
+		this->sTarget = sTarget;
+	}
 
 private:
 	std::list<std::string> lParam;
-
+	std::string sTarget;
 };
 
 #endif
-- 
cgit v1.2.3