Adobe Source Libraries 2.0.0
A collection of C++ libraries.
Loading...
Searching...
No Matches
istream_fwd.hpp
Go to the documentation of this file.
1/*
2 Copyright 2013 Adobe
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5*/
6/**************************************************************************************************/
7
8#ifndef ADOBE_ISTREAM_FWD_HPP
9#define ADOBE_ISTREAM_FWD_HPP
10
11#include <adobe/config.hpp>
12
13#include <ios>
14
15/**************************************************************************************************/
16
17namespace adobe {
18
19/**************************************************************************************************/
20
21struct line_position_t;
22
23class stream_error_t;
24
25[[deprecated]] std::string format_stream_error(std::istream&, const stream_error_t&);
26
28
29/**************************************************************************************************/
30
31} // namespace adobe
32
33/**************************************************************************************************/
34
35#endif // ADOBE_ISTREAM_FWD_HPP
36
37/**************************************************************************************************/
An exception class thrown during parsing failures.
Definition istream.hpp:166
std::string format_stream_error(std::istream &, const stream_error_t &)
A type detailing parser position information.
Definition istream.hpp:127