/Src/Dependencies/Boost/boost/property_tree/detail/info_parser_error.hpp

http://hadesmem.googlecode.com/ · C++ Header · 32 lines · 18 code · 5 blank · 9 comment · 0 complexity · ccd1cee36787ec39302e39e3a1581aed MD5 · raw file

  1. // ----------------------------------------------------------------------------
  2. // Copyright (C) 2002-2006 Marcin Kalicinski
  3. //
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // For more information, see www.boost.org
  9. // ----------------------------------------------------------------------------
  10. #ifndef BOOST_PROPERTY_TREE_DETAIL_INFO_PARSER_ERROR_HPP_INCLUDED
  11. #define BOOST_PROPERTY_TREE_DETAIL_INFO_PARSER_ERROR_HPP_INCLUDED
  12. #include <boost/property_tree/detail/file_parser_error.hpp>
  13. #include <string>
  14. namespace boost { namespace property_tree { namespace info_parser
  15. {
  16. class info_parser_error: public file_parser_error
  17. {
  18. public:
  19. info_parser_error(const std::string &message,
  20. const std::string &filename,
  21. unsigned long line) :
  22. file_parser_error(message, filename, line)
  23. {
  24. }
  25. };
  26. } } }
  27. #endif