source: s10k/CommonLibs/plog/Appenders/IAppender.h@ 1096

Last change on this file since 1096 was 1096, checked in by s10k, 7 years ago

Added zlib, quazip, basicxmlsyntaxhighlighter, conditionalsemaphore and linenumberdisplay libraries. zlib and quazip are pre-compiled, but you can compile them yourself, just delete the dll files (or equivalent binary files to your OS)

File size: 207 bytes
Line 
1#pragma once
2#include <plog/Record.h>
3
4namespace plog
5{
6 class IAppender
7 {
8 public:
9 virtual ~IAppender()
10 {
11 }
12
13 virtual void write(const Record& record) = 0;
14 };
15}
Note: See TracBrowser for help on using the repository browser.