File descriptor output streambuf, inspiration from Josuttis N.M.
More...
#include <logger.hpp>
|
virtual int_type | overflow (int_type c) |
|
virtual std::streamsize | xsputn (const char *s, std::streamsize num) |
|
File descriptor output streambuf, inspiration from Josuttis N.M.
Definition at line 50 of file logger.hpp.
FIX8::fdoutbuf::fdoutbuf |
( |
int |
_fd | ) |
|
|
inline |
virtual FIX8::fdoutbuf::~fdoutbuf |
( |
| ) |
|
|
inlinevirtual |
virtual int_type FIX8::fdoutbuf::overflow |
( |
int_type |
c | ) |
|
|
inlineprotectedvirtual |
Definition at line 55 of file logger.hpp.
57 if (c != traits_type::eof())
60 if (write(
fd, &z, 1) != 1)
61 return traits_type::eof();
virtual std::streamsize FIX8::fdoutbuf::xsputn |
( |
const char * |
s, |
|
|
std::streamsize |
num |
|
) |
| |
|
inlineprotectedvirtual |
Definition at line 66 of file logger.hpp.
68 return write (
fd, s, num);
The documentation for this class was generated from the following file: