|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r56092 - in trunk: boost/property_tree boost/property_tree/detail libs/property_tree libs/property_tree/doc libs/property_tree/examples libs/property_tree/test libs/property_tree/test/custom-build
From: sebastian.redl_at_[hidden]
Date: 2009-09-07 12:40:45
Author: cornedbee
Date: 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
New Revision: 56092
URL: http://svn.boost.org/trac/boost/changeset/56092
Log:
Fix inspection problems.
Text files modified:
trunk/boost/property_tree/detail/rapidxml.hpp | 12 +++++++++---
trunk/boost/property_tree/ini_parser.hpp | 1 +
trunk/boost/property_tree/stream_translator.hpp | 6 +++---
trunk/libs/property_tree/CMakeLists.txt | 6 ++++++
trunk/libs/property_tree/breaking_changes.txt | 7 ++++++-
trunk/libs/property_tree/doc/accessing.qbk | 7 +++++++
trunk/libs/property_tree/doc/cmd_line_parser.qbk | 7 +++++++
trunk/libs/property_tree/doc/container.qbk | 7 +++++++
trunk/libs/property_tree/doc/info_parser.qbk | 7 +++++++
trunk/libs/property_tree/doc/ini_parser.qbk | 7 +++++++
trunk/libs/property_tree/doc/intro.qbk | 7 +++++++
trunk/libs/property_tree/doc/json_parser.qbk | 7 +++++++
trunk/libs/property_tree/doc/parsers.qbk | 7 +++++++
trunk/libs/property_tree/doc/synopsis.qbk | 7 +++++++
trunk/libs/property_tree/doc/system_environment_parser.qbk | 7 +++++++
trunk/libs/property_tree/doc/tutorial.qbk | 7 +++++++
trunk/libs/property_tree/doc/windows_registry_parser.qbk | 7 +++++++
trunk/libs/property_tree/doc/xml_parser.qbk | 7 +++++++
trunk/libs/property_tree/examples/debug_settings.xml | 5 +++++
trunk/libs/property_tree/index.html | 14 ++++++++------
trunk/libs/property_tree/test/CMakeLists.txt | 9 +++++++--
trunk/libs/property_tree/test/Jamfile.v2 | 8 ++++++++
trunk/libs/property_tree/test/custom-build/Makefile | 8 ++++++++
trunk/libs/property_tree/test/custom-build/debug_settings.xml | 5 +++++
trunk/libs/property_tree/test/custom-build/gcc.mak | 8 ++++++++
trunk/libs/property_tree/test/custom-build/icc.mak | 8 ++++++++
trunk/libs/property_tree/test/custom-build/vc.mak | 8 ++++++++
trunk/libs/property_tree/test/sandbox.cpp | 11 ++++++++++-
trunk/libs/property_tree/test/xml_parser_test_data.hpp | 11 +++++++++++
29 files changed, 202 insertions(+), 16 deletions(-)
Modified: trunk/boost/property_tree/detail/rapidxml.hpp
==============================================================================
--- trunk/boost/property_tree/detail/rapidxml.hpp (original)
+++ trunk/boost/property_tree/detail/rapidxml.hpp 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,9 +1,15 @@
+// ----------------------------------------------------------------------------
+// Copyright (C) 2006, 2009 Marcin Kalicinski
+//
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+// For more information, see www.boost.org
+// ----------------------------------------------------------------------------
#ifndef RAPIDXML_HPP_INCLUDED
#define RAPIDXML_HPP_INCLUDED
-// Copyright (C) 2006, 2009 Marcin Kalicinski
-// Version 1.13
-// Revision $DateTime: 2009/05/13 01:46:17 $
//! \file rapidxml.hpp This file contains rapidxml parser and DOM implementation
// If standard library is disabled, user must provide implementations of required functions and typedefs
Modified: trunk/boost/property_tree/ini_parser.hpp
==============================================================================
--- trunk/boost/property_tree/ini_parser.hpp (original)
+++ trunk/boost/property_tree/ini_parser.hpp 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,5 +1,6 @@
// ----------------------------------------------------------------------------
// Copyright (C) 2002-2006 Marcin Kalicinski
+// Copyright (C) 2009 Sebastian Redl
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
Modified: trunk/boost/property_tree/stream_translator.hpp
==============================================================================
--- trunk/boost/property_tree/stream_translator.hpp (original)
+++ trunk/boost/property_tree/stream_translator.hpp 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -136,8 +136,8 @@
int i;
s >> i;
// out of range?
- if(i > std::numeric_limits<signed char>::max() ||
- i < std::numeric_limits<signed char>::min())
+ if(i > (std::numeric_limits<signed char>::max)() ||
+ i < (std::numeric_limits<signed char>::min)())
{
s.clear(); // guarantees eof to be unset
return;
@@ -159,7 +159,7 @@
unsigned i;
s >> i;
// out of range?
- if(i > std::numeric_limits<unsigned char>::max()) {
+ if(i > (std::numeric_limits<unsigned char>::max)()) {
s.clear(); // guarantees eof to be unset
return;
}
Modified: trunk/libs/property_tree/CMakeLists.txt
==============================================================================
--- trunk/libs/property_tree/CMakeLists.txt (original)
+++ trunk/libs/property_tree/CMakeLists.txt 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,9 @@
+#
+# Copyright Sebastian Redl
+#
+# Distributed under the Boost Software License, Version 1.0.
+# See http://www.boost.org/LICENSE_1_0.txt
+#
#----------------------------------------------------------------------------
# This file was automatically generated from the original CMakeLists.txt file
# Add a variable to hold the headers for the library
Modified: trunk/libs/property_tree/breaking_changes.txt
==============================================================================
--- trunk/libs/property_tree/breaking_changes.txt (original)
+++ trunk/libs/property_tree/breaking_changes.txt 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,8 @@
+Copyright (C) 2009 Sebastian Redl
+Distributed under the Boost Software License, Version 1.0.
+See http://www.boost.org/LICENSE_1_0.txt
+
+
List all breaking changes done to the interface during the update here.
- Template parameters
@@ -43,4 +48,4 @@
you need to compare against not_found() instead of end().
Rationale: equal_range() also returns assoc_iterators. equal_range() cannot
return normal iterators, since the conversion would not preserve
- the equal range or even the range property.
+ the equal range or even the range property.
Modified: trunk/libs/property_tree/doc/accessing.qbk
==============================================================================
--- trunk/libs/property_tree/doc/accessing.qbk (original)
+++ trunk/libs/property_tree/doc/accessing.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section:accessing How to Access Data in a Property Tree]
[/ __ptree_*__ macros expected from property_tree.qbk]
[def __pi__ ['pi]] [/ mathematical constant]
Modified: trunk/libs/property_tree/doc/cmd_line_parser.qbk
==============================================================================
--- trunk/libs/property_tree/doc/cmd_line_parser.qbk (original)
+++ trunk/libs/property_tree/doc/cmd_line_parser.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section:cmdline_parser Command Line Parser]
[def __read_cmdline__ [funcref boost::property_tree::cmdline_parser::read_cmdline read_cmdline]]
This is a simple parser that converts command line parameters (in form of standard `argc` and `argv` arguments) into a property tree. There is no write function. The parser correctly recognizes simple command line styles, both from Unix and Windows worlds.
Modified: trunk/libs/property_tree/doc/container.qbk
==============================================================================
--- trunk/libs/property_tree/doc/container.qbk (original)
+++ trunk/libs/property_tree/doc/container.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section:container Property Tree as a Container]
[/ __ptree_*__ macros expected from property_tree.qbk]
Every property tree node models the ReversibleSequence concept, providing
Modified: trunk/libs/property_tree/doc/info_parser.qbk
==============================================================================
--- trunk/libs/property_tree/doc/info_parser.qbk (original)
+++ trunk/libs/property_tree/doc/info_parser.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section INFO Parser]
The INFO format was created specifically for the property tree library. It
provides a simple, efficient format that can be used to serialize property
Modified: trunk/libs/property_tree/doc/ini_parser.qbk
==============================================================================
--- trunk/libs/property_tree/doc/ini_parser.qbk (original)
+++ trunk/libs/property_tree/doc/ini_parser.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section INI Parser]
[def __ini__ [@http://en.wikipedia.org/wiki/INI INI format]]
The __ini__ was once widely used in the world of Windows. It is now deprecated,
Modified: trunk/libs/property_tree/doc/intro.qbk
==============================================================================
--- trunk/libs/property_tree/doc/intro.qbk (original)
+++ trunk/libs/property_tree/doc/intro.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[template ptree2codeImage[] [$images/ptree2code.png]]
[section:intro What is Property Tree?]
The Property Tree library provides a data structure that stores an arbitrarily
Modified: trunk/libs/property_tree/doc/json_parser.qbk
==============================================================================
--- trunk/libs/property_tree/doc/json_parser.qbk (original)
+++ trunk/libs/property_tree/doc/json_parser.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section JSON Parser]
[def __json__ [@http://en.wikipedia.org/wiki/JSON JSON format]]
The __json__ is a data interchange format derived from the object literal
Modified: trunk/libs/property_tree/doc/parsers.qbk
==============================================================================
--- trunk/libs/property_tree/doc/parsers.qbk (original)
+++ trunk/libs/property_tree/doc/parsers.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section:parsers How to Populate a Property Tree]
[include xml_parser.qbk]
Modified: trunk/libs/property_tree/doc/synopsis.qbk
==============================================================================
--- trunk/libs/property_tree/doc/synopsis.qbk (original)
+++ trunk/libs/property_tree/doc/synopsis.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section:synopsis Property Tree Synopsis]
[def __basic_ptree__ [classref boost::property_tree::basic_ptree basic_ptree]]
[def __ptree__ [classref boost::property_tree::ptree ptree]]
Modified: trunk/libs/property_tree/doc/system_environment_parser.qbk
==============================================================================
--- trunk/libs/property_tree/doc/system_environment_parser.qbk (original)
+++ trunk/libs/property_tree/doc/system_environment_parser.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section System Environment Parser]
[note The system environment parser is not yet implemented.]
[endsect] [/env_parser]
Modified: trunk/libs/property_tree/doc/tutorial.qbk
==============================================================================
--- trunk/libs/property_tree/doc/tutorial.qbk (original)
+++ trunk/libs/property_tree/doc/tutorial.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section:tutorial Five Minute Tutorial]
This tutorial uses XML. Note that the library is not specifically bound to XML,
and any other supported format (such as INI or JSON) could be used instead.
Modified: trunk/libs/property_tree/doc/windows_registry_parser.qbk
==============================================================================
--- trunk/libs/property_tree/doc/windows_registry_parser.qbk (original)
+++ trunk/libs/property_tree/doc/windows_registry_parser.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section:registry_parser Windows Registry Parser]
[def __registry_parser.hpp__ [headerref boost/property_tree/registry_parser.hpp registry_parser.hpp]]
[def __read_registry__ [funcref boost::property_tree::registry_parser::read_registry read_registry]]
Modified: trunk/libs/property_tree/doc/xml_parser.qbk
==============================================================================
--- trunk/libs/property_tree/doc/xml_parser.qbk (original)
+++ trunk/libs/property_tree/doc/xml_parser.qbk 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+[/
+ / Copyright (c) 2008 Marcin Kalicinski (kalita <at> poczta dot onet dot pl)
+ / Copyright (c) 2009 Sebastian Redl (sebastian dot redl <at> getdesigned dot at)
+ /
+ / Distributed under the Boost Software License, Version 1.0. (See accompanying
+ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ /]
[section XML Parser]
[def __xml__ [@http://en.wikipedia.org/wiki/XML XML format]]
[def __xml_parser.hpp__ [headerref boost/property_tree/xml_parser.hpp xml_parser.hpp]]
Modified: trunk/libs/property_tree/examples/debug_settings.xml
==============================================================================
--- trunk/libs/property_tree/examples/debug_settings.xml (original)
+++ trunk/libs/property_tree/examples/debug_settings.xml 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,4 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
+<!--
+Copyright (C) 2006 Marcin Kalicinski
+Distributed under the Boost Software License, Version 1.0.
+See http://www.boost.org/LICENSE_1_0.txt
+-->
<debug>
<filename>debug.log</filename>
<modules>
Modified: trunk/libs/property_tree/index.html
==============================================================================
--- trunk/libs/property_tree/index.html (original)
+++ trunk/libs/property_tree/index.html 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,12 +1,14 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
-<!--
<head>
- <meta http-equiv="refresh" content="0; URL=doc/index.html">
+<meta http-equiv="refresh" content="0; URL=doc/html/index.html">
</head>
--->
<body>
- <p>
- Docs for Property Tree library not available yet.</p>
+Automatic redirection failed, please go to the
+Boost.PropertyTree documentation.
+<p>Copyright Sebastian Redl 2009</p>
+<p>Distributed under the Boost Software License, Version 1.0. (See accompanying file
+LICENSE_1_0.txt or copy at
+www.boost.org/LICENSE_1_0.txt).
+</p>
</body>
</html>
Modified: trunk/libs/property_tree/test/CMakeLists.txt
==============================================================================
--- trunk/libs/property_tree/test/CMakeLists.txt (original)
+++ trunk/libs/property_tree/test/CMakeLists.txt 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,10 @@
+#
+# Copyright Sebastian Redl
+#
+# Distributed under the Boost Software License, Version 1.0.
+# See http://www.boost.org/LICENSE_1_0.txt
+#
+#----------------------------------------------------------------------------
boost_additional_test_dependencies(property_tree BOOST_DEPENDS test serialization)
@@ -19,5 +26,3 @@
COMPILE_FLAGS ${test_compile_flags}
DEPENDS boost_unit_test_framework boost_serialization STATIC)
endforeach(test ${tests})
-
-
Modified: trunk/libs/property_tree/test/Jamfile.v2
==============================================================================
--- trunk/libs/property_tree/test/Jamfile.v2 (original)
+++ trunk/libs/property_tree/test/Jamfile.v2 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,11 @@
+# Boost.PropertyTree
+#
+# Copyright (c) 2009 Sebastian Redl
+#
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
# bring in rules for testing
import testing ;
Modified: trunk/libs/property_tree/test/custom-build/Makefile
==============================================================================
--- trunk/libs/property_tree/test/custom-build/Makefile (original)
+++ trunk/libs/property_tree/test/custom-build/Makefile 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,11 @@
+# Boost.PropertyTree
+#
+# Copyright (c) 2009 Sebastian Redl
+#
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
all:
clean:
Modified: trunk/libs/property_tree/test/custom-build/debug_settings.xml
==============================================================================
--- trunk/libs/property_tree/test/custom-build/debug_settings.xml (original)
+++ trunk/libs/property_tree/test/custom-build/debug_settings.xml 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,4 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
+<!--
+Copyright (C) 2006 Marcin Kalicinski
+Distributed under the Boost Software License, Version 1.0.
+See http://www.boost.org/LICENSE_1_0.txt
+-->
<debug>
<filename>debug.log</filename>
<modules>
Modified: trunk/libs/property_tree/test/custom-build/gcc.mak
==============================================================================
--- trunk/libs/property_tree/test/custom-build/gcc.mak (original)
+++ trunk/libs/property_tree/test/custom-build/gcc.mak 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,11 @@
+# Boost.PropertyTree
+#
+# Copyright (c) 2009 Sebastian Redl
+#
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
CC=g++
CFLAGSREL=-Wall -pedantic -ftemplate-depth-255 -O3
CFLAGSDBG=-Wall -pedantic -ftemplate-depth-255 -O0
Modified: trunk/libs/property_tree/test/custom-build/icc.mak
==============================================================================
--- trunk/libs/property_tree/test/custom-build/icc.mak (original)
+++ trunk/libs/property_tree/test/custom-build/icc.mak 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,11 @@
+# Boost.PropertyTree
+#
+# Copyright (c) 2009 Sebastian Redl
+#
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
CC=icc
CFLAGSREL=-O3 -static
CFLAGSDBG=-O0 -static
Modified: trunk/libs/property_tree/test/custom-build/vc.mak
==============================================================================
--- trunk/libs/property_tree/test/custom-build/vc.mak (original)
+++ trunk/libs/property_tree/test/custom-build/vc.mak 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,11 @@
+# Boost.PropertyTree
+#
+# Copyright (c) 2009 Sebastian Redl
+#
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
CC=cl
CFLAGSREL=-O2 -Ox -EHsc -DBOOST_DISABLE_WIN32 -nologo
CFLAGSDBG=-EHsc -DBOOST_DISABLE_WIN32 -nologo
Modified: trunk/libs/property_tree/test/sandbox.cpp
==============================================================================
--- trunk/libs/property_tree/test/sandbox.cpp (original)
+++ trunk/libs/property_tree/test/sandbox.cpp 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,5 +1,14 @@
+// ----------------------------------------------------------------------------
+// Copyright (C) 2009 Sebastian Redl
+//
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+// For more information, see www.boost.org
+// ----------------------------------------------------------------------------
+
#define _CRT_SECURE_NO_DEPRECATE
-//#define BOOST_PROPERTY_TREE_XML_PARSER_PUGXML
#include <boost/property_tree/xml_parser.hpp>
#include <boost/property_tree/info_parser.hpp>
#include <iostream>
Modified: trunk/libs/property_tree/test/xml_parser_test_data.hpp
==============================================================================
--- trunk/libs/property_tree/test/xml_parser_test_data.hpp (original)
+++ trunk/libs/property_tree/test/xml_parser_test_data.hpp 2009-09-07 12:40:42 EDT (Mon, 07 Sep 2009)
@@ -1,3 +1,14 @@
+// ----------------------------------------------------------------------------
+// Copyright (C) 2002-2006 Marcin Kalicinski
+// Copyright (C) 2009 Sebastian Redl
+//
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+// For more information, see www.boost.org
+// ----------------------------------------------------------------------------
+
#ifndef XML_PARSER_TEST_DATA_HPP_INCLUDED
#define XML_PARSER_TEST_DATA_HPP_INCLUDED
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk