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: Measure/Measure.h
- Revision:
- 81:996c0a3319b4
- Parent:
- 68:d3765f93c16a
- Child:
- 82:668b51a39148
diff -r 959151952153 -r 996c0a3319b4 Measure/Measure.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Measure/Measure.h Thu May 11 14:34:53 2017 +0000
@@ -0,0 +1,17 @@
+#include "LocalDate.h"
+
+class Measure
+{
+ //Public properties / methods
+ public:
+ double temperature;
+ double humidity;
+ double pressure;
+
+ LocalDate date;
+
+ //Constructor
+ Measure(double f, double h, double p);
+ Measure();
+ Measure(LocalDate d, double f, double h, double p);
+};
\ No newline at end of file
