3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Revision:
67:8d0e88172e2a
Parent:
47:468a89d62c23
Child:
68:d3765f93c16a
--- a/LocalDate.cpp	Sun Apr 09 23:46:20 2017 +0000
+++ b/LocalDate.cpp	Mon Apr 10 01:37:12 2017 +0000
@@ -27,6 +27,15 @@
         min = localDate->min;
         sec = localDate->sec;   
     }
+    void LocalDate::setValues(LocalDate *localDate)
+    {        
+        day = localDate->day;
+        month = localDate->month;
+        year = localDate->year;
+        hour = localDate->hour;
+        min = localDate->min;
+        sec = localDate->sec;  
+    }
     char* LocalDate::ToString()
     {
         char *charArray = new char[40];