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

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

added XML Tools latest version (2.0d) and s10k's common libs

File size: 222 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.