some fixes [multithreading,..]
needed interface changes [new options] logger for android wifi-ap-optimization new test-cases
This commit is contained in:
17
misc/log/Logger.h
Normal file
17
misc/log/Logger.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef LOGGER_H
|
||||
#define LOGGER_H
|
||||
|
||||
#include <string>
|
||||
|
||||
/** base-class for all loggers */
|
||||
class Logger {
|
||||
|
||||
public:
|
||||
|
||||
virtual ~Logger() {;}
|
||||
|
||||
virtual void add(const std::string& str, const bool nl) = 0;
|
||||
|
||||
};
|
||||
|
||||
#endif // LOGGER_H
|
||||
Reference in New Issue
Block a user