2007-02-21 22:41:31 +03:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2009-01-06 01:33:00 +03:00
|
|
|
// Pug Improved XML Parser - Version 0.4
|
2007-02-21 22:41:31 +03:00
|
|
|
// --------------------------------------------------------
|
2009-01-06 01:33:00 +03:00
|
|
|
// Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
2007-02-21 22:41:31 +03:00
|
|
|
// This work is based on the pugxml parser, which is:
|
|
|
|
|
// Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
|
|
|
|
// Released into the Public Domain. Use at your own risk.
|
|
|
|
|
// See pugxml.xml for further information, history, etc.
|
|
|
|
|
// Contributions by Neville Franks (readonly@getsoft.com).
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#ifndef HEADER_PUGICONFIG_HPP
|
|
|
|
|
#define HEADER_PUGICONFIG_HPP
|
|
|
|
|
|
|
|
|
|
// Uncomment this to disable STL
|
|
|
|
|
// #define PUGIXML_NO_STL
|
|
|
|
|
|
|
|
|
|
// Uncomment this to disable XPath
|
|
|
|
|
// #define PUGIXML_NO_XPATH
|
|
|
|
|
|
2007-10-31 20:46:35 +03:00
|
|
|
// Uncomment this to disable exceptions
|
|
|
|
|
// Note: you can't use XPath with PUGIXML_NO_EXCEPTIONS
|
|
|
|
|
// #define PUGIXML_NO_EXCEPTIONS
|
|
|
|
|
|
2007-02-21 22:41:31 +03:00
|
|
|
#endif
|