blob: 04891904b986163828cdd39992aa270fb13eaada [file] [log] [blame]
Jeff Thompson86b6d642013-10-17 15:01:56 -07001// (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 NDNBOOST_IOSTREAMS_DETAIL_ERROR_HPP_INCLUDED
9#define NDNBOOST_IOSTREAMS_DETAIL_ERROR_HPP_INCLUDED
10
11#if defined(_MSC_VER) && (_MSC_VER >= 1020)
12# pragma once
13#endif
14
15#include <ndnboost/iostreams/detail/ios.hpp> // failure.
16
17namespace ndnboost { namespace iostreams { namespace detail {
18
19inline NDNBOOST_IOSTREAMS_FAILURE cant_read()
20{ return NDNBOOST_IOSTREAMS_FAILURE("no read access"); }
21
22inline NDNBOOST_IOSTREAMS_FAILURE cant_write()
23{ return NDNBOOST_IOSTREAMS_FAILURE("no write access"); }
24
25inline NDNBOOST_IOSTREAMS_FAILURE cant_seek()
26{ return NDNBOOST_IOSTREAMS_FAILURE("no random access"); }
27
28inline NDNBOOST_IOSTREAMS_FAILURE bad_read()
29{ return NDNBOOST_IOSTREAMS_FAILURE("bad read"); }
30
31inline NDNBOOST_IOSTREAMS_FAILURE bad_putback()
32{ return NDNBOOST_IOSTREAMS_FAILURE("putback buffer full"); }
33
34inline NDNBOOST_IOSTREAMS_FAILURE bad_write()
35{ return NDNBOOST_IOSTREAMS_FAILURE("bad write"); }
36
37inline NDNBOOST_IOSTREAMS_FAILURE write_area_exhausted()
38{ return NDNBOOST_IOSTREAMS_FAILURE("write area exhausted"); }
39
40inline NDNBOOST_IOSTREAMS_FAILURE bad_seek()
41{ return NDNBOOST_IOSTREAMS_FAILURE("bad seek"); }
42
43} } } // End namespaces detail, iostreams, boost.
44
45#endif // #ifndef NDNBOOST_IOSTREAMS_DETAIL_ERROR_HPP_INCLUDED