1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef QSLOGDESTCONSOLE_H
- #define QSLOGDESTCONSOLE_H
- #include "QsLogDest.h"
- class QString;
- class QsDebugOutput
- {
- public:
- static void output(const QString& a_message);
- };
- namespace QsLogging
- {
- class DebugOutputDestination : public Destination
- {
- public:
- virtual void write(const QString& message, Level level);
- virtual bool isValid();
- virtual void rotate() { }
- };
- }
- #endif
|