Add const GetStream() member function
parent
554b7a2747
commit
ca9e788fbf
4
files.h
4
files.h
|
|
@ -59,6 +59,10 @@ public:
|
|||
//! \returns the internal stream pointer
|
||||
std::istream* GetStream() {return m_stream;}
|
||||
|
||||
//! \brief Retrieves the internal stream
|
||||
//! \returns the internal stream pointer
|
||||
const std::istream* GetStream() const {return m_stream;}
|
||||
|
||||
lword MaxRetrievable() const;
|
||||
size_t TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true);
|
||||
size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const;
|
||||
|
|
|
|||
Loading…
Reference in New Issue