Pequena LIB para fazer um LOGGER

Dependents:   monitoramento_ativos

Logger.h

Committer:
AndersonIctus
Date:
2019-05-02
Revision:
0:1019a5a78757
Child:
1:f23ad1b9a35a

File content as of revision 0:1019a5a78757:

#ifndef MBED_LOGGER_H
#define MBED_LOGGER_H

#include <string>
using namespace std;

class Logger {
 
 public:
    static void log(string text);
}
;
#endif