mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Fixes the following build error: /home/jbrost/dev/icinga2/lib/base/stdiostream.cpp: In member function ‘virtual size_t icinga::StdioStream::Read(void*, size_t, bool)’: /home/jbrost/dev/icinga2/lib/base/stdiostream.cpp:28:15: error: invalid use of incomplete type ‘std::iostream’ {aka ‘class std::basic_iostream<char>’} 28 | m_InnerStream->read(static_cast<char *>(buffer), size); | ^~
37 lines
704 B
C++
37 lines
704 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef STDIOSTREAM_H
|
|
#define STDIOSTREAM_H
|
|
|
|
#include "base/i2-base.hpp"
|
|
#include "base/stream.hpp"
|
|
#include <iosfwd>
|
|
#include <iostream>
|
|
|
|
namespace icinga {
|
|
|
|
class StdioStream final : public Stream
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(StdioStream);
|
|
|
|
StdioStream(std::iostream *innerStream, bool ownsStream);
|
|
~StdioStream() override;
|
|
|
|
size_t Read(void *buffer, size_t size, bool allow_partial = false) override;
|
|
void Write(const void *buffer, size_t size) override;
|
|
|
|
void Close() override;
|
|
|
|
bool IsDataAvailable() const override;
|
|
bool IsEof() const override;
|
|
|
|
private:
|
|
std::iostream *m_InnerStream;
|
|
bool m_OwnsStream;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* STDIOSTREAM_H */
|