übernahme Code Shortcut
This commit is contained in:
21
CuteLogger/include/AndroidAppender.h
Normal file
21
CuteLogger/include/AndroidAppender.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef ANDROIDAPPENDER_H
|
||||
#define ANDROIDAPPENDER_H
|
||||
|
||||
// Local
|
||||
#include <AbstractStringAppender.h>
|
||||
|
||||
|
||||
class AndroidAppender : public AbstractStringAppender
|
||||
{
|
||||
public:
|
||||
AndroidAppender();
|
||||
|
||||
static int androidLogPriority(Logger::LogLevel);
|
||||
|
||||
protected:
|
||||
void append(const QDateTime& timeStamp, Logger::LogLevel logLevel, const char* file, int line,
|
||||
const char* function, const QString& category, const QString& message);
|
||||
|
||||
};
|
||||
|
||||
#endif // ANDROIDAPPENDER_H
|
||||
Reference in New Issue
Block a user