ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/CommonLibs/plog/Appenders/IAppender.h
Revision: 1096
Committed: Sat Dec 30 14:40:33 2017 UTC (7 years, 9 months ago) by s10k
Content type: text/x-chdr
File size: 207 byte(s)
Log Message:
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 Contents

# Content
1 #pragma once
2 #include <plog/Record.h>
3
4 namespace plog
5 {
6 class IAppender
7 {
8 public:
9 virtual ~IAppender()
10 {
11 }
12
13 virtual void write(const Record& record) = 0;
14 };
15 }