3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Committer:
aburch1
Date:
Mon Apr 24 13:15:51 2017 +0000
Revision:
74:749727490f44
Child:
75:b44645bbf2d2
Created a message logger and set up the framework ready for implementation

Who changed what in which revision?

UserRevisionLine numberNew contents of line
aburch1 74:749727490f44 1 #include "MessageLogger.h"
aburch1 74:749727490f44 2
aburch1 74:749727490f44 3
aburch1 74:749727490f44 4 // constructor
aburch1 74:749727490f44 5 MessageLogger::MessageLogger(Thread* logger)
aburch1 74:749727490f44 6 {
aburch1 74:749727490f44 7
aburch1 74:749727490f44 8 }
aburch1 74:749727490f44 9
aburch1 74:749727490f44 10 // public methods:
aburch1 74:749727490f44 11 void MessageLogger::SendError(string errorMessage)
aburch1 74:749727490f44 12 {
aburch1 74:749727490f44 13
aburch1 74:749727490f44 14 }
aburch1 74:749727490f44 15 void MessageLogger::SendMessage(string message)
aburch1 74:749727490f44 16 {
aburch1 74:749727490f44 17
aburch1 74:749727490f44 18 }
aburch1 74:749727490f44 19 bool MessageLogger::GetError()
aburch1 74:749727490f44 20 {
aburch1 74:749727490f44 21
aburch1 74:749727490f44 22 }
aburch1 74:749727490f44 23 bool MessageLogger::GetMessage()
aburch1 74:749727490f44 24 {
aburch1 74:749727490f44 25
aburch1 74:749727490f44 26 }
aburch1 74:749727490f44 27
aburch1 74:749727490f44 28 void MessageLogger::PrintError()
aburch1 74:749727490f44 29 {
aburch1 74:749727490f44 30
aburch1 74:749727490f44 31 }
aburch1 74:749727490f44 32 void MessageLogger::PrintMessage()
aburch1 74:749727490f44 33 {
aburch1 74:749727490f44 34
aburch1 74:749727490f44 35 }