3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Committer:
niallfrancis
Date:
Sat May 13 17:35:58 2017 +0000
Revision:
85:422d0a1b95cf
Parent:
81:996c0a3319b4
Finished commenting classes;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
aburch1 81:996c0a3319b4 1 #ifndef MEASURE_H
aburch1 81:996c0a3319b4 2 #define MEASURE_H
aburch1 81:996c0a3319b4 3
aburch1 81:996c0a3319b4 4 #include <stdio.h>
aburch1 81:996c0a3319b4 5 #include <string.h>
aburch1 81:996c0a3319b4 6
aburch1 81:996c0a3319b4 7 class Message
aburch1 81:996c0a3319b4 8 {
aburch1 81:996c0a3319b4 9 public:
aburch1 81:996c0a3319b4 10 void copy(char* ptr);
aburch1 81:996c0a3319b4 11 char* getText();
aburch1 81:996c0a3319b4 12
aburch1 81:996c0a3319b4 13 private:
aburch1 81:996c0a3319b4 14 char text[256];
aburch1 81:996c0a3319b4 15 };
aburch1 81:996c0a3319b4 16 #endif