3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Revision:
68:d3765f93c16a
Parent:
67:8d0e88172e2a
Child:
71:a935e4b88ad8
--- a/LocalDate.cpp	Mon Apr 10 01:37:12 2017 +0000
+++ b/LocalDate.cpp	Thu Apr 13 11:07:14 2017 +0000
@@ -1,5 +1,9 @@
 #include "LocalDate.h"
 #include <stdio.h>
+
+//
+//  CONSTRUCTORS
+// 
     LocalDate::LocalDate(int d, int m, int y,int h,int mm,int s)
     {
         day = d;
@@ -36,6 +40,10 @@
         min = localDate->min;
         sec = localDate->sec;  
     }
+
+//
+//  PUBLIC METHODS:
+//
     char* LocalDate::ToString()
     {
         char *charArray = new char[40];
@@ -43,7 +51,6 @@
         return charArray;
     }
     
-    
     void LocalDate::TickSecond()
     {
         sec++;