]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/iostreams/include/boost/iostreams/detail/error.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / iostreams / include / boost / iostreams / detail / error.hpp
CommitLineData
7c673cae
FG
1// (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
2// (C) Copyright 2003-2007 Jonathan Turkanis
3// Distributed under the Boost Software License, Version 1.0. (See accompanying
4// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
5
6// See http://www.boost.org/libs/iostreams for documentation.
7
8#ifndef BOOST_IOSTREAMS_DETAIL_ERROR_HPP_INCLUDED
9#define BOOST_IOSTREAMS_DETAIL_ERROR_HPP_INCLUDED
10
11#if defined(_MSC_VER)
12# pragma once
13#endif
14
15#include <boost/iostreams/detail/ios.hpp> // failure.
16
17namespace boost { namespace iostreams { namespace detail {
18
19inline BOOST_IOSTREAMS_FAILURE cant_read()
20{ return BOOST_IOSTREAMS_FAILURE("no read access"); }
21
22inline BOOST_IOSTREAMS_FAILURE cant_write()
23{ return BOOST_IOSTREAMS_FAILURE("no write access"); }
24
25inline BOOST_IOSTREAMS_FAILURE cant_seek()
26{ return BOOST_IOSTREAMS_FAILURE("no random access"); }
27
28inline BOOST_IOSTREAMS_FAILURE bad_read()
29{ return BOOST_IOSTREAMS_FAILURE("bad read"); }
30
31inline BOOST_IOSTREAMS_FAILURE bad_putback()
32{ return BOOST_IOSTREAMS_FAILURE("putback buffer full"); }
33
34inline BOOST_IOSTREAMS_FAILURE bad_write()
35{ return BOOST_IOSTREAMS_FAILURE("bad write"); }
36
37inline BOOST_IOSTREAMS_FAILURE write_area_exhausted()
38{ return BOOST_IOSTREAMS_FAILURE("write area exhausted"); }
39
40inline BOOST_IOSTREAMS_FAILURE bad_seek()
41{ return BOOST_IOSTREAMS_FAILURE("bad seek"); }
42
43} } } // End namespaces detail, iostreams, boost.
44
45#endif // #ifndef BOOST_IOSTREAMS_DETAIL_ERROR_HPP_INCLUDED