Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SOFT253_Template_Weather_OS_54 by
Diff: LocalDate/LocalDate.h
- Revision:
- 83:0d3572a8a851
- Parent:
- 81:996c0a3319b4
diff -r 668b51a39148 -r 0d3572a8a851 LocalDate/LocalDate.h
--- 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
