• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
cant_read()19 inline BOOST_IOSTREAMS_FAILURE cant_read()
20 { return BOOST_IOSTREAMS_FAILURE("no read access"); }
21 
cant_write()22 inline BOOST_IOSTREAMS_FAILURE cant_write()
23 { return BOOST_IOSTREAMS_FAILURE("no write access"); }
24 
cant_seek()25 inline BOOST_IOSTREAMS_FAILURE cant_seek()
26 { return BOOST_IOSTREAMS_FAILURE("no random access"); }
27 
bad_read()28 inline BOOST_IOSTREAMS_FAILURE bad_read()
29 { return BOOST_IOSTREAMS_FAILURE("bad read"); }
30 
bad_putback()31 inline BOOST_IOSTREAMS_FAILURE bad_putback()
32 { return BOOST_IOSTREAMS_FAILURE("putback buffer full"); }
33 
bad_write()34 inline BOOST_IOSTREAMS_FAILURE bad_write()
35 { return BOOST_IOSTREAMS_FAILURE("bad write"); }
36 
write_area_exhausted()37 inline BOOST_IOSTREAMS_FAILURE write_area_exhausted()
38 { return BOOST_IOSTREAMS_FAILURE("write area exhausted"); }
39 
bad_seek()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
46