Radu-Adrian Marcu / Mbed OS SOFT253_GroupA_AssignmentRepo

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Revision:
83:0d3572a8a851
Parent:
81:996c0a3319b4
--- a/LocalDate/LocalDate.h	Thu May 11 15:53:15 2017 +0000
+++ b/LocalDate/LocalDate.h	Thu May 11 19:23:55 2017 +0000
@@ -3,23 +3,20 @@
 
 class LocalDate
 {
-    //Public properties:
     public:
-    int day;
-    int month;
-    int year;
-    int hour;
-    int min;
-    int sec;
-    
-    // Constructors declarations
-    LocalDate (int d, int m , int y,int h,int mm,int s);
-    LocalDate ();
-    LocalDate(LocalDate *localDate);
-    
-    //Public methods:
-    void TickSecond();
-    char *ToString();
-    void setValues(LocalDate *localDate);
+        int day;
+        int month;
+        int year;
+        int hour;
+        int min;
+        int sec;
+        
+        LocalDate (int d, int m , int y,int h,int mm,int s);
+        LocalDate ();
+        LocalDate(LocalDate *localDate);
+        
+        void TickSecond();
+        char *ToString();
+        void setValues(LocalDate *localDate);
 };
 #endif
\ No newline at end of file