Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:50:18

0001 // ----------------------------------------------------------------------------
0002 // Copyright (C) 2002-2006 Marcin Kalicinski
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. 
0005 // (See accompanying file LICENSE_1_0.txt or copy at 
0006 // http://www.boost.org/LICENSE_1_0.txt)
0007 //
0008 // For more information, see www.boost.org
0009 // ----------------------------------------------------------------------------
0010 #ifndef BOOST_PROPERTY_TREE_DETAIL_JSON_PARSER_ERROR_HPP_INCLUDED
0011 #define BOOST_PROPERTY_TREE_DETAIL_JSON_PARSER_ERROR_HPP_INCLUDED
0012 
0013 #include <boost/property_tree/detail/file_parser_error.hpp>
0014 #include <string>
0015 
0016 namespace boost { namespace property_tree { namespace json_parser
0017 {
0018 
0019     //! Json parser error
0020     class json_parser_error: public file_parser_error
0021     {
0022     public:
0023         json_parser_error(const std::string &message, 
0024                           const std::string &filename, 
0025                           unsigned long line): 
0026             file_parser_error(message, filename, line)
0027         { 
0028         }
0029     };
0030 
0031 } } }
0032 
0033 #endif