zipios
2.2.6
Zipios -- a small C++ library that provides easy access to .zip files.
src
filteroutputstreambuf.cpp
Go to the documentation of this file.
1
/*
2
Zipios -- a small C++ library that provides easy access to .zip files.
3
4
Copyright (C) 2000-2007 Thomas Sondergaard
5
Copyright (C) 2015-2019 Made to Order Software Corporation
6
7
This library is free software; you can redistribute it and/or
8
modify it under the terms of the GNU Lesser General Public
9
License as published by the Free Software Foundation; either
10
version 2.1 of the License, or (at your option) any later version.
11
12
This library is distributed in the hope that it will be useful,
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
Lesser General Public License for more details.
16
17
You should have received a copy of the GNU Lesser General Public
18
License along with this library; if not, write to the Free Software
19
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
*/
21
29
#include "
filteroutputstreambuf.hpp
"
30
31
#include "
zipios/zipiosexceptions.hpp
"
32
33
34
namespace
zipios
35
{
36
37
56
FilterOutputStreambuf::FilterOutputStreambuf
(std::streambuf * outbuf)
57
: m_outbuf(outbuf)
58
{
59
if
(
m_outbuf
==
nullptr
)
60
{
61
throw
InvalidStateException
(
"FilterOutputStreambuf was called with a null streambuf pointer"
);
62
}
63
}
64
65
74
FilterOutputStreambuf::~FilterOutputStreambuf
()
75
{
76
}
77
78
79
}
// zipios namespace
80
81
// Local Variables:
82
// mode: cpp
83
// indent-tabs-mode: nil
84
// c-basic-offset: 4
85
// tab-width: 4
86
// End:
87
88
// vim: ts=4 sw=4 et
zipiosexceptions.hpp
Various exceptions used throughout the Zipios library, all based on zipios::Exception.
zipios::FilterOutputStreambuf::~FilterOutputStreambuf
virtual ~FilterOutputStreambuf()
Clean up the object.
Definition:
filteroutputstreambuf.cpp:74
zipios::InvalidStateException
Exception used when it is not possible to move forward.
Definition:
zipiosexceptions.hpp:108
filteroutputstreambuf.hpp
Declarations of the zipios::FilterOutputStreambuf.
zipios::FilterOutputStreambuf::FilterOutputStreambuf
FilterOutputStreambuf(std::streambuf *outbuf)
Initialize your filter output stream buffer.
Definition:
filteroutputstreambuf.cpp:56
zipios::FilterOutputStreambuf::m_outbuf
std::streambuf * m_outbuf
Definition:
filteroutputstreambuf.hpp:49
zipios
The zipios namespace includes the Zipios library definitions.
Definition:
backbuffer.cpp:36
Generated on Sat Mar 7 2020 14:08:28 for zipios by
1.8.20