Updated header/footer comments - included MIT license text as per user request, removed old notes, updated version number
git-svn-id: http://pugixml.googlecode.com/svn/trunk@230 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
parent
f02208b12f
commit
c389916348
@ -1,17 +1,15 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
/**
|
||||||
//
|
* pugixml parser - version 0.5
|
||||||
// Pug Improved XML Parser - Version 0.42
|
* --------------------------------------------------------
|
||||||
// --------------------------------------------------------
|
* Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||||
// Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Report bugs and download new versions at http://code.google.com/p/pugixml/
|
||||||
// Report bugs and download new versions at http://code.google.com/p/pugixml/
|
*
|
||||||
//
|
* This library is distributed under the MIT License. See notice at the end
|
||||||
// This work is based on the pugxml parser, which is:
|
* of this file.
|
||||||
// Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
*
|
||||||
// Released into the Public Domain. Use at your own risk.
|
* This work is based on the pugxml parser, which is:
|
||||||
// See pugxml.xml for further information, history, etc.
|
* Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
||||||
// Contributions by Neville Franks (readonly@getsoft.com).
|
*/
|
||||||
//
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef HEADER_PUGICONFIG_HPP
|
#ifndef HEADER_PUGICONFIG_HPP
|
||||||
#define HEADER_PUGICONFIG_HPP
|
#define HEADER_PUGICONFIG_HPP
|
||||||
@ -33,3 +31,28 @@
|
|||||||
// In absence of PUGIXML_CLASS/PUGIXML_FUNCTION definitions PUGIXML_API is used instead
|
// In absence of PUGIXML_CLASS/PUGIXML_FUNCTION definitions PUGIXML_API is used instead
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copyright (c) 2006-2009 Arseny Kapoulkine
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person
|
||||||
|
* obtaining a copy of this software and associated documentation
|
||||||
|
* files (the "Software"), to deal in the Software without
|
||||||
|
* restriction, including without limitation the rights to use,
|
||||||
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the
|
||||||
|
* Software is furnished to do so, subject to the following
|
||||||
|
* conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
* OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|||||||
@ -1,17 +1,15 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
/**
|
||||||
//
|
* pugixml parser - version 0.5
|
||||||
// Pug Improved XML Parser - Version 0.42
|
* --------------------------------------------------------
|
||||||
// --------------------------------------------------------
|
* Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||||
// Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Report bugs and download new versions at http://code.google.com/p/pugixml/
|
||||||
// Report bugs and download new versions at http://code.google.com/p/pugixml/
|
*
|
||||||
//
|
* This library is distributed under the MIT License. See notice at the end
|
||||||
// This work is based on the pugxml parser, which is:
|
* of this file.
|
||||||
// Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
*
|
||||||
// Released into the Public Domain. Use at your own risk.
|
* This work is based on the pugxml parser, which is:
|
||||||
// See pugxml.xml for further information, history, etc.
|
* Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
||||||
// Contributions by Neville Franks (readonly@getsoft.com).
|
*/
|
||||||
//
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#include "pugixml.hpp"
|
#include "pugixml.hpp"
|
||||||
|
|
||||||
@ -3123,3 +3121,28 @@ namespace pugi
|
|||||||
return global_deallocate;
|
return global_deallocate;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copyright (c) 2006-2009 Arseny Kapoulkine
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person
|
||||||
|
* obtaining a copy of this software and associated documentation
|
||||||
|
* files (the "Software"), to deal in the Software without
|
||||||
|
* restriction, including without limitation the rights to use,
|
||||||
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the
|
||||||
|
* Software is furnished to do so, subject to the following
|
||||||
|
* conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
* OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|||||||
@ -1,17 +1,15 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
/**
|
||||||
//
|
* pugixml parser - version 0.5
|
||||||
// Pug Improved XML Parser - Version 0.42
|
* --------------------------------------------------------
|
||||||
// --------------------------------------------------------
|
* Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||||
// Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Report bugs and download new versions at http://code.google.com/p/pugixml/
|
||||||
// Report bugs and download new versions at http://code.google.com/p/pugixml/
|
*
|
||||||
//
|
* This library is distributed under the MIT License. See notice at the end
|
||||||
// This work is based on the pugxml parser, which is:
|
* of this file.
|
||||||
// Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
*
|
||||||
// Released into the Public Domain. Use at your own risk.
|
* This work is based on the pugxml parser, which is:
|
||||||
// See pugxml.xml for further information, history, etc.
|
* Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
||||||
// Contributions by Neville Franks (readonly@getsoft.com).
|
*/
|
||||||
//
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef HEADER_PUGIXML_HPP
|
#ifndef HEADER_PUGIXML_HPP
|
||||||
#define HEADER_PUGIXML_HPP
|
#define HEADER_PUGIXML_HPP
|
||||||
@ -2114,3 +2112,28 @@ namespace pugi
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copyright (c) 2006-2009 Arseny Kapoulkine
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person
|
||||||
|
* obtaining a copy of this software and associated documentation
|
||||||
|
* files (the "Software"), to deal in the Software without
|
||||||
|
* restriction, including without limitation the rights to use,
|
||||||
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the
|
||||||
|
* Software is furnished to do so, subject to the following
|
||||||
|
* conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
* OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|||||||
@ -1,17 +1,15 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
/**
|
||||||
//
|
* pugixml parser - version 0.5
|
||||||
// Pug Improved XML Parser - Version 0.42
|
* --------------------------------------------------------
|
||||||
// --------------------------------------------------------
|
* Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||||
// Copyright (C) 2006-2009, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Report bugs and download new versions at http://code.google.com/p/pugixml/
|
||||||
// Report bugs and download new versions at http://code.google.com/p/pugixml/
|
*
|
||||||
//
|
* This library is distributed under the MIT License. See notice at the end
|
||||||
// This work is based on the pugxml parser, which is:
|
* of this file.
|
||||||
// Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
*
|
||||||
// Released into the Public Domain. Use at your own risk.
|
* This work is based on the pugxml parser, which is:
|
||||||
// See pugxml.xml for further information, history, etc.
|
* Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
||||||
// Contributions by Neville Franks (readonly@getsoft.com).
|
*/
|
||||||
//
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#include "pugixml.hpp"
|
#include "pugixml.hpp"
|
||||||
|
|
||||||
@ -3692,3 +3690,28 @@ namespace pugi
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copyright (c) 2006-2009 Arseny Kapoulkine
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person
|
||||||
|
* obtaining a copy of this software and associated documentation
|
||||||
|
* files (the "Software"), to deal in the Software without
|
||||||
|
* restriction, including without limitation the rights to use,
|
||||||
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the
|
||||||
|
* Software is furnished to do so, subject to the following
|
||||||
|
* conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
* OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user