]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/iostreams/include/boost/iostreams/detail/error.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / iostreams / include / boost / iostreams / detail / error.hpp
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
17 namespace boost { namespace iostreams { namespace detail {
18
19 inline BOOST_IOSTREAMS_FAILURE cant_read()
20 { return BOOST_IOSTREAMS_FAILURE("no read access"); }
21
22 inline BOOST_IOSTREAMS_FAILURE cant_write()
23 { return BOOST_IOSTREAMS_FAILURE("no write access"); }
24
25 inline BOOST_IOSTREAMS_FAILURE cant_seek()
26 { return BOOST_IOSTREAMS_FAILURE("no random access"); }
27
28 inline BOOST_IOSTREAMS_FAILURE bad_read()
29 { return BOOST_IOSTREAMS_FAILURE("bad read"); }
30
31 inline BOOST_IOSTREAMS_FAILURE bad_putback()
32 { return BOOST_IOSTREAMS_FAILURE("putback buffer full"); }
33
34 inline BOOST_IOSTREAMS_FAILURE bad_write()
35 { return BOOST_IOSTREAMS_FAILURE("bad write"); }
36
37 inline BOOST_IOSTREAMS_FAILURE write_area_exhausted()
38 { return BOOST_IOSTREAMS_FAILURE("write area exhausted"); }
39
40 inline 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