File indexing completed on 2025-10-31 08:54:43
0001 
0002 
0003 
0004 
0005 
0006 
0007 
0008 
0009 
0010 #ifndef BOOST_PROPERTY_TREE_DETAIL_INFO_PARSER_ERROR_HPP_INCLUDED
0011 #define BOOST_PROPERTY_TREE_DETAIL_INFO_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 info_parser
0017 {
0018 
0019     class info_parser_error: public file_parser_error
0020     {
0021     public:
0022         info_parser_error(const std::string &message,
0023                           const std::string &filename,
0024                           unsigned long line) :
0025             file_parser_error(message, filename, line)
0026         {
0027         }
0028     };
0029 
0030 } } }
0031 
0032 #endif