Own Cor LSA installation
diff --git a/nlsr_lsa.hpp b/nlsr_lsa.hpp
index 0dd00c6..18a09d3 100644
--- a/nlsr_lsa.hpp
+++ b/nlsr_lsa.hpp
@@ -113,12 +113,38 @@
 		:Lsa()
 	{
 	}
+
+	CorLsa(string origR, uint8_t lst, uint32_t lsn, uint32_t lt
+	      																							, double r, double theta);
+	string getCorLsaData();
+	
+	double getCorRadius()
+	{
+		return corRad;
+	}
+	
+	void setCorRadius(double cr)
+	{
+		corRad=cr;
+	}
+
+	double getCorTheta()
+	{
+		return corTheta;
+	}
+
+	void setCorTheta(double ct){
+		corTheta=ct;
+	}
 private:
 	double corRad;
 	double corTheta;
 
 };
 
+std::ostream& 
+operator<<(std::ostream& os, CorLsa& cLsa);
+