This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Indoor/misc/log/LoggerCOUT.h
kazu 4f511d907e some fixes [multithreading,..]
needed interface changes [new options]
logger for android
wifi-ap-optimization
new test-cases
2016-09-28 12:19:14 +02:00

19 lines
316 B
C++

#ifndef LOGGERCOUT_H
#define LOGGERCOUT_H
#include "Logger.h"
#include <iostream>
class LoggerCOUT : public Logger {
public:
virtual void add(const std::string& str, const bool nl) override {
std::cout << str;
if (nl) {std::cout << std::endl;} else {std::cout << std::flush;}
}
};
#endif // LOGGERCOUT_H