| Revision: | 1073 |
| Committed: | Thu Oct 5 17:48:32 2017 UTC (8 years ago) by s10k |
| Content type: | text/x-chdr |
| File size: | 434 byte(s) |
| Log Message: | added XML Tools latest version (2.0d) and s10k's common libs |
| # | Content |
|---|---|
| 1 | #pragma once |
| 2 | #include <plog/Record.h> |
| 3 | #include <plog/Util.h> |
| 4 | |
| 5 | namespace plog |
| 6 | { |
| 7 | class MessageOnlyFormatter |
| 8 | { |
| 9 | public: |
| 10 | static util::nstring header() |
| 11 | { |
| 12 | return util::nstring(); |
| 13 | } |
| 14 | |
| 15 | static util::nstring format(const Record& record) |
| 16 | { |
| 17 | util::nstringstream ss; |
| 18 | ss << record.getMessage() << PLOG_NSTR("\n"); |
| 19 | |
| 20 | return ss.str(); |
| 21 | } |
| 22 | }; |
| 23 | } |