24 lines
827 B
C++
24 lines
827 B
C++
|
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
|
//
|
||
|
|
// Pug Improved XML Parser - Version 0.3
|
||
|
|
// --------------------------------------------------------
|
||
|
|
// Copyright (C) 2006-2007, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||
|
|
// 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
|
||
|
|
|
||
|
|
#endif
|