Radu-Adrian Marcu / Mbed OS SOFT253_GroupA_AssignmentRepo

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Revision:
81:996c0a3319b4
Child:
83:0d3572a8a851
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LocalDate/LocalDate.h	Thu May 11 14:34:53 2017 +0000
@@ -0,0 +1,25 @@
+#ifndef LOCALDATE_H
+#define LOCALDATE_H
+
+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);
+};
+#endif
\ No newline at end of file