This commit is contained in:
King_DuckZ 2020-02-17 22:23:16 +01:00
parent 824eb94695
commit 7c49d5c548
3294 changed files with 46105 additions and 39662 deletions

View file

@ -1,5 +1,12 @@
XQilla: an XQuery and XPath 2.0 library and command line interpreter.
version 2.3.1 (2015.05.18):
* Modified to build against Xerces-C 3.1.2.
* Added Visual Studio 2010 projects.
* Fixed a bug that could cause incorrect query results when combining
nested expressions and functions.
* Fixed a crash that could happen when XQilla is built with Visual
Studio 2010 or higher.
version 2.3.0 (2011.09.09):
* Added support for XQuery 3.0 version declarations.

View file

@ -17,7 +17,7 @@ lib_LTLIBRARIES = libxqilla.la
# Library version, see http://sourceware.org/autobook/autobook/autobook_91.html
# -no-undefined for Cygwin (bug #1639669)
libxqilla_la_LDFLAGS = -version-info 6:0:0 -no-undefined
libxqilla_la_LDFLAGS = -version-info 6:0:1 -no-undefined
libxqilla_la_SOURCES = \
src/framework/ReferenceCounted.cpp \
@ -524,6 +524,18 @@ docs/xqc_header.html \
docs/simple-api \
docs/dom3-api \
docs/xqc-api \
Win32Projects/VC10/dom-basic.vcxproj \
Win32Projects/VC10/dom-context-item.vcxproj \
Win32Projects/VC10/dom-resolver.vcxproj \
Win32Projects/VC10/simple-basic.vcxproj \
Win32Projects/VC10/simple-context-item.vcxproj \
Win32Projects/VC10/xmarkRunner.vcxproj \
Win32Projects/VC10/xqc-basic.vcxproj \
Win32Projects/VC10/xqc-context-item.vcxproj \
Win32Projects/VC10/xqilla.vcxproj \
Win32Projects/VC10/xqilla_cmd.vcxproj \
Win32Projects/VC10/xqtsRunner.vcxproj \
Win32Projects/VC10/XQilla.sln \
Win32Projects/VC8/dom-basic.vcproj \
Win32Projects/VC8/dom-context-item.vcproj \
Win32Projects/VC8/dom-resolver.vcproj \

View file

@ -513,7 +513,7 @@ lib_LTLIBRARIES = libxqilla.la
# Library version, see http://sourceware.org/autobook/autobook/autobook_91.html
# -no-undefined for Cygwin (bug #1639669)
libxqilla_la_LDFLAGS = -version-info 6:0:0 -no-undefined
libxqilla_la_LDFLAGS = -version-info 6:0:1 -no-undefined
libxqilla_la_SOURCES = \
src/framework/ReferenceCounted.cpp \
src/framework/BaseMemoryManager.cpp \
@ -1019,6 +1019,18 @@ docs/xqc_header.html \
docs/simple-api \
docs/dom3-api \
docs/xqc-api \
Win32Projects/VC10/dom-basic.vcxproj \
Win32Projects/VC10/dom-context-item.vcxproj \
Win32Projects/VC10/dom-resolver.vcxproj \
Win32Projects/VC10/simple-basic.vcxproj \
Win32Projects/VC10/simple-context-item.vcxproj \
Win32Projects/VC10/xmarkRunner.vcxproj \
Win32Projects/VC10/xqc-basic.vcxproj \
Win32Projects/VC10/xqc-context-item.vcxproj \
Win32Projects/VC10/xqilla.vcxproj \
Win32Projects/VC10/xqilla_cmd.vcxproj \
Win32Projects/VC10/xqtsRunner.vcxproj \
Win32Projects/VC10/XQilla.sln \
Win32Projects/VC8/dom-basic.vcproj \
Win32Projects/VC8/dom-context-item.vcproj \
Win32Projects/VC8/dom-resolver.vcproj \

6
README
View file

@ -3,15 +3,15 @@ This is XQilla, a C++ implementation of XQuery and XPath 2.0 based on Xerces-C.
Build Instructions
------------------
1. Download a source distribution of Xerces-C 3.1.1
1. Download a source distribution of Xerces-C 3.1.2
2. Build Xerces-C
cd xerces-c-3.1.1/
cd xerces-c-3.1.2/
./configure
make
4. Build XQilla
cd xqilla/
./configure --with-xerces=`pwd`/../xerces-c-3.1.1/
./configure --with-xerces=`pwd`/../xerces-c-3.1.2/
make

View file

@ -0,0 +1,206 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla", "xqilla.vcxproj", "{63E85107-41E0-4FC7-8083-40E85861B426}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla_cmd", "xqilla_cmd.vcxproj", "{44F4673C-C971-4085-8750-3BA0D7FE6FD2}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqtsRunner", "xqtsRunner.vcxproj", "{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xmarkRunner", "xmarkRunner.vcxproj", "{619264FA-3730-43C4-A903-0EAA453527AC}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple-context-item", "simple-context-item.vcxproj", "{55BEA039-4B29-4909-902A-9DD4BEADBCD0}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple-basic", "simple-basic.vcxproj", "{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-resolver", "dom-resolver.vcxproj", "{31B7B9AA-109C-4B71-ADA6-274A6420969E}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-context-item", "dom-context-item.vcxproj", "{E1A71F82-696D-4439-B647-CE04D75E49DC}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-basic", "dom-basic.vcxproj", "{6672DE96-EA92-44A2-900E-6868A86FB044}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|Win32 = Release|Win32
Release|x64 = Release|x64
Static Debug|Win32 = Static Debug|Win32
Static Debug|x64 = Static Debug|x64
Static Release|Win32 = Static Release|Win32
Static Release|x64 = Static Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{63E85107-41E0-4FC7-8083-40E85861B426}.Debug|Win32.ActiveCfg = Debug|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Debug|Win32.Build.0 = Debug|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Debug|x64.ActiveCfg = Debug|x64
{63E85107-41E0-4FC7-8083-40E85861B426}.Debug|x64.Build.0 = Debug|x64
{63E85107-41E0-4FC7-8083-40E85861B426}.Release|Win32.ActiveCfg = Release|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Release|Win32.Build.0 = Release|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Release|x64.ActiveCfg = Release|x64
{63E85107-41E0-4FC7-8083-40E85861B426}.Release|x64.Build.0 = Release|x64
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|Win32.ActiveCfg = Static Debug|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|Win32.Build.0 = Static Debug|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|x64.ActiveCfg = Static Debug|x64
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|x64.Build.0 = Static Debug|x64
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|Win32.ActiveCfg = Static Release|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|Win32.Build.0 = Static Release|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|x64.ActiveCfg = Static Release|x64
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|x64.Build.0 = Static Release|x64
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|Win32.ActiveCfg = Debug|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|Win32.Build.0 = Debug|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|x64.ActiveCfg = Debug|x64
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|x64.Build.0 = Debug|x64
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|Win32.ActiveCfg = Release|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|Win32.Build.0 = Release|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|x64.ActiveCfg = Release|x64
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|x64.Build.0 = Release|x64
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|Win32.ActiveCfg = Static Debug|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|Win32.Build.0 = Static Debug|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|x64.ActiveCfg = Static Debug|x64
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|x64.Build.0 = Static Debug|x64
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|Win32.ActiveCfg = Static Release|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|Win32.Build.0 = Static Release|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|x64.ActiveCfg = Static Release|x64
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|x64.Build.0 = Static Release|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|Win32.ActiveCfg = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|Win32.Build.0 = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|x64.ActiveCfg = Debug|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|x64.Build.0 = Debug|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|Win32.ActiveCfg = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|Win32.Build.0 = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|x64.ActiveCfg = Release|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|x64.Build.0 = Release|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|Win32.ActiveCfg = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|Win32.Build.0 = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|x64.ActiveCfg = Debug|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|x64.Build.0 = Debug|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|Win32.ActiveCfg = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|Win32.Build.0 = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|x64.ActiveCfg = Release|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|x64.Build.0 = Release|x64
{619264FA-3730-43C4-A903-0EAA453527AC}.Debug|Win32.ActiveCfg = Debug|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Debug|Win32.Build.0 = Debug|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Debug|x64.ActiveCfg = Debug|x64
{619264FA-3730-43C4-A903-0EAA453527AC}.Debug|x64.Build.0 = Debug|x64
{619264FA-3730-43C4-A903-0EAA453527AC}.Release|Win32.ActiveCfg = Release|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Release|Win32.Build.0 = Release|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Release|x64.ActiveCfg = Release|x64
{619264FA-3730-43C4-A903-0EAA453527AC}.Release|x64.Build.0 = Release|x64
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|Win32.ActiveCfg = Debug|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|Win32.Build.0 = Debug|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|x64.ActiveCfg = Debug|x64
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|x64.Build.0 = Debug|x64
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|Win32.ActiveCfg = Release|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|Win32.Build.0 = Release|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|x64.ActiveCfg = Release|x64
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|x64.Build.0 = Release|x64
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|Win32.ActiveCfg = Debug|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|Win32.Build.0 = Debug|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|x64.ActiveCfg = Debug|x64
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|x64.Build.0 = Debug|x64
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|Win32.ActiveCfg = Release|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|Win32.Build.0 = Release|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|x64.ActiveCfg = Release|x64
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|x64.Build.0 = Release|x64
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|Win32.ActiveCfg = Debug|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|Win32.Build.0 = Debug|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|x64.ActiveCfg = Debug|x64
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|x64.Build.0 = Debug|x64
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|Win32.ActiveCfg = Release|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|Win32.Build.0 = Release|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|x64.ActiveCfg = Release|x64
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|x64.Build.0 = Release|x64
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|Win32.ActiveCfg = Debug|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|Win32.Build.0 = Debug|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|x64.ActiveCfg = Debug|x64
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|x64.Build.0 = Debug|x64
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|Win32.ActiveCfg = Release|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|Win32.Build.0 = Release|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|x64.ActiveCfg = Release|x64
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|x64.Build.0 = Release|x64
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|Win32.ActiveCfg = Debug|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|Win32.Build.0 = Debug|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|x64.ActiveCfg = Debug|x64
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|x64.Build.0 = Debug|x64
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|Win32.ActiveCfg = Release|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|Win32.Build.0 = Release|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|x64.ActiveCfg = Release|x64
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|x64.Build.0 = Release|x64
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|Win32.ActiveCfg = Debug|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|Win32.Build.0 = Debug|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|x64.ActiveCfg = Debug|x64
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|x64.Build.0 = Debug|x64
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|Win32.ActiveCfg = Release|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|Win32.Build.0 = Release|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|x64.ActiveCfg = Release|x64
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|x64.Build.0 = Release|x64
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|Win32.ActiveCfg = Debug|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|Win32.Build.0 = Debug|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|x64.ActiveCfg = Debug|x64
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|x64.Build.0 = Debug|x64
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|Win32.ActiveCfg = Release|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|Win32.Build.0 = Release|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|x64.ActiveCfg = Release|x64
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|x64.Build.0 = Release|x64
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|Win32.ActiveCfg = Debug|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|Win32.Build.0 = Debug|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|x64.ActiveCfg = Debug|x64
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|x64.Build.0 = Debug|x64
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|Win32.ActiveCfg = Release|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|Win32.Build.0 = Release|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|x64.ActiveCfg = Release|x64
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|x64.Build.0 = Release|x64
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|Win32.ActiveCfg = Debug|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|Win32.Build.0 = Debug|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|x64.ActiveCfg = Debug|x64
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|x64.Build.0 = Debug|x64
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|Win32.ActiveCfg = Release|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|Win32.Build.0 = Release|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|x64.ActiveCfg = Release|x64
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|x64.Build.0 = Release|x64
{6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|Win32.ActiveCfg = Debug|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|Win32.Build.0 = Debug|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|x64.ActiveCfg = Debug|x64
{6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|x64.Build.0 = Debug|x64
{6672DE96-EA92-44A2-900E-6868A86FB044}.Release|Win32.ActiveCfg = Release|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Release|Win32.Build.0 = Release|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Release|x64.ActiveCfg = Release|x64
{6672DE96-EA92-44A2-900E-6868A86FB044}.Release|x64.Build.0 = Release|x64
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|Win32.ActiveCfg = Debug|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|Win32.Build.0 = Debug|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|x64.ActiveCfg = Debug|x64
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|x64.Build.0 = Debug|x64
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|Win32.ActiveCfg = Release|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|Win32.Build.0 = Release|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|x64.ActiveCfg = Release|x64
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

View file

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{6672DE96-EA92-44A2-900E-6868A86FB044}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)dom-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >dom-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)dom-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >dom-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)dom-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >dom-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)dom-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >dom-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)dom-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >dom-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)dom-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >dom-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\src\samples\dom-api\dom-basic.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

View file

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{E1A71F82-696D-4439-B647-CE04D75E49DC}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)dom-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >dom-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)dom-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >dom-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)dom-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >dom-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)dom-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >dom-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)dom-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >dom-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)dom-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >dom-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\src\samples\dom-api\dom-context-item.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

View file

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{31B7B9AA-109C-4B71-ADA6-274A6420969E}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)dom-resolver\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >dom-resolver</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)dom-resolver\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >dom-resolver</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)dom-resolver\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >dom-resolver</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)dom-resolver\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >dom-resolver</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)dom-resolver\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >dom-resolver</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)dom-resolver\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >dom-resolver</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-resolver.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-resolver/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-resolver/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-resolver.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-resolver.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-resolver/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-resolver/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-resolver.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-resolver.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-resolver/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-resolver/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-resolver.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-resolver.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-resolver/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-resolver/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-resolver.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-resolver.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-resolver/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-resolver/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-resolver.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)dom-resolver.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)dom-resolver/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)dom-resolver/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)dom-resolver.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\src\samples\dom-api\dom-resolver.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

View file

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)simple-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >simple-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)simple-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >simple-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)simple-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >simple-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)simple-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >simple-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)simple-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >simple-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)simple-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >simple-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\src\samples\simple-api\simple-basic.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

View file

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{55BEA039-4B29-4909-902A-9DD4BEADBCD0}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)simple-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >simple-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)simple-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >simple-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)simple-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >simple-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)simple-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >simple-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)simple-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >simple-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)simple-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >simple-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)simple-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)simple-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)simple-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)simple-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\src\samples\simple-api\simple-context-item.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

View file

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{619264FA-3730-43C4-A903-0EAA453527AC}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)xmarkRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >xmarkRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)xmarkRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >xmarkRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)xmarkRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >xmarkRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)xmarkRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >xmarkRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)xmarkRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >xmarkRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)xmarkRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >xmarkRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xmarkRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xmarkRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xmarkRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xmarkRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xmarkRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xmarkRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xmarkRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xmarkRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xmarkRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xmarkRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xmarkRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xmarkRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xmarkRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xmarkRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xmarkRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xmarkRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xmarkRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xmarkRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xmarkRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xmarkRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xmarkRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xmarkRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xmarkRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xmarkRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\tests\xmark\xmark.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

View file

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{C03914F5-AA13-4B1C-A4B0-8FD6560AB574}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)xqc-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >xqc-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)xqc-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >xqc-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)xqc-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >xqc-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)xqc-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >xqc-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)xqc-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >xqc-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)xqc-basic\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >xqc-basic</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-basic.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-basic/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-basic/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-basic.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\src\samples\xqc-api\xqc-basic.c" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

View file

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{C03914F5-AA13-4B1C-A4B0-8FD6560AB575}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)xqc-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >xqc-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)xqc-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >xqc-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)xqc-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >xqc-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)xqc-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >xqc-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)xqc-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >xqc-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)xqc-context-item\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >xqc-context-item</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqc-context-item.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqc-context-item/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqc-context-item/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqc-context-item.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\src\samples\xqc-api\xqc-context-item.c" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,608 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Debug|Win32">
<Configuration>Static Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Debug|x64">
<Configuration>Static Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Debug|IA64">
<Configuration>Static Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Release|Win32">
<Configuration>Static Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Release|x64">
<Configuration>Static Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Release|IA64">
<Configuration>Static Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{44F4673C-C971-4085-8750-3BA0D7FE6FD2}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Static Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Static Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Static Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" >..\..\build\windows\VC10\$(Platform)\Static Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Static Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Debug|IA64'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Static Debug|IA64'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Static Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Static Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Static Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Static Release|IA64'" >./$(OutDir)xqilla_cmd\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Static Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Static Release|IA64'" >xqilla</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Static Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23sd.lib;xerces-c_static_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23s.lib;xerces-c_static_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23sd.lib;xerces-c_static_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23s.lib;xerces-c_static_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23sd.lib;xerces-c_static_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqilla_cmd.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqilla/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqilla/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23s.lib;xerces-c_static_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqilla.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\src\samples\xqilla\xqilla-commandline.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

View file

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations" >
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|IA64">
<Configuration>Debug</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|IA64">
<Configuration>Release</Configuration>
<Platform>IA64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals" >
<ProjectGuid>{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="Configuration" >
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings" >
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" Label="PropertySheets" >
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup >
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >./$(OutDir)xqtsRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >xqtsRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >./$(OutDir)xqtsRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >xqtsRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >./$(OutDir)xqtsRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >xqtsRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >./$(OutDir)xqtsRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >xqtsRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >..\..\build\windows\VC10\$(Platform)\Debug\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >./$(OutDir)xqtsRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >xqtsRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >.exe</TargetExt>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >..\..\build\windows\VC10\$(Platform)\Release\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >./$(OutDir)xqtsRunner\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >false</LinkIncremental>
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >xqtsRunner</TargetName>
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >.exe</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqtsRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqtsRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqtsRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqtsRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqtsRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqtsRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqtsRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqtsRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqtsRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqtsRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqtsRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqtsRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqtsRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqtsRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqtsRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqtsRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|IA64'" >
<ClCompile >
<Optimization>Disabled</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqtsRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqtsRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqtsRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<BasicRuntimeChecks >EnableFastChecks</BasicRuntimeChecks>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqtsRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|IA64'" >
<ClCompile >
<Optimization>MaxSpeed</Optimization>
<MinimalRebuild>true</MinimalRebuild>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<AdditionalIncludeDirectories>../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)xqtsRunner.pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)xqtsRunner/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)xqtsRunner/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat >ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
<Link >
<AdditionalOptions >/machine:IA64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)xqtsRunner.pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
</ItemGroup>
<ItemGroup >
<ClCompile Include="..\..\tests\xqts\runner.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets" >
</ImportGroup>
<ItemGroup >
</ItemGroup>
</Project>

20
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.67 for XQilla 2.3.0.
# Generated by GNU Autoconf 2.67 for XQilla 2.3.1.
#
#
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@ -698,8 +698,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='XQilla'
PACKAGE_TARNAME='xqilla'
PACKAGE_VERSION='2.3.0'
PACKAGE_STRING='XQilla 2.3.0'
PACKAGE_VERSION='2.3.1'
PACKAGE_STRING='XQilla 2.3.1'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
@ -1453,7 +1453,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures XQilla 2.3.0 to adapt to many kinds of systems.
\`configure' configures XQilla 2.3.1 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1524,7 +1524,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of XQilla 2.3.0:";;
short | recursive ) echo "Configuration of XQilla 2.3.1:";;
esac
cat <<\_ACEOF
@ -1634,7 +1634,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
XQilla configure 2.3.0
XQilla configure 2.3.1
generated by GNU Autoconf 2.67
Copyright (C) 2010 Free Software Foundation, Inc.
@ -2174,7 +2174,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by XQilla $as_me 2.3.0, which was
It was created by XQilla $as_me 2.3.1, which was
generated by GNU Autoconf 2.67. Invocation command line was
$ $0 $@
@ -3102,7 +3102,7 @@ fi
# Define the identity of the package.
PACKAGE=XQilla
VERSION=2.3.0
VERSION=2.3.1
cat >>confdefs.h <<_ACEOF
@ -17262,7 +17262,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by XQilla $as_me 2.3.0, which was
This file was extended by XQilla $as_me 2.3.1, which was
generated by GNU Autoconf 2.67. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -17328,7 +17328,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
XQilla config.status 2.3.0
XQilla config.status 2.3.1
configured by $0, generated by GNU Autoconf 2.67,
with options \\"\$ac_cs_config\\"

View file

@ -2,10 +2,10 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT([XQilla],[2.3.0],[])
AC_INIT([XQilla],[2.3.1],[])
AC_CONFIG_AUX_DIR(autotools)
AC_CANONICAL_TARGET([])
AM_INIT_AUTOMAKE(XQilla, 2.3.0,)
AM_INIT_AUTOMAKE(XQilla, 2.3.1,)
AC_CONFIG_SRCDIR([src/runtime/Result.cpp])
AC_CONFIG_HEADERS([src/config/xqilla_config_unix.h])
AC_CONFIG_MACRO_DIR([autotools/m4])

View file

@ -5,58 +5,73 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMAttr.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMNode.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMAttr.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMNode_8hpp_source.html">xercesc/dom/DOMNode.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMAttr.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMAttr_8hpp__incl.png" border="0" usemap="#DOMAttr_8hpp" alt=""/></div>
<map name="DOMAttr_8hpp" id="DOMAttr_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMAttr_8hpp__incl.png" border="0" usemap="#DOMAttr_8hpp_map" alt=""/></div>
<map name="DOMAttr_8hpp_map" id="DOMAttr_8hpp">
<area shape="rect" id="node5" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="77,83,288,112"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMAttr_8hpp__dep__incl.png" border="0" usemap="#DOMAttr_8hppdep_map" alt=""/></div>
<map name="DOMAttr_8hppdep_map" id="DOMAttr_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="5,83,88,112"/><area shape="rect" id="node5" href="StDOMNode_8hpp.html" title="StDOMNode.hpp" alt="" coords="112,83,245,112"/></map>
</div>
<p><a href="DOMAttr_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMAttr.html">xercesc::DOMAttr</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a></code> class refers to an attribute of an XML element. <a href="classxercesc_1_1DOMAttr.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMAttr_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMAttr.html">xercesc::DOMAttr</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a></code> class refers to an attribute of an XML element. <a href="classxercesc_1_1DOMAttr.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMAttr_8hpp.html#a871264c7a5d636ab012da635e4545a50">XERCESC_INCLUDE_GUARD_DOMATTR_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="a871264c7a5d636ab012da635e4545a50"></a><!-- doxytag: member="DOMAttr.hpp::XERCESC_INCLUDE_GUARD_DOMATTR_HPP" ref="a871264c7a5d636ab012da635e4545a50" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMATTR_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,4 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="5,83,88,112"/>
<area shape="rect" id="node5" href="$StDOMNode_8hpp.html" title="StDOMNode.hpp" alt="" coords="112,83,245,112"/>
</map>

View file

@ -0,0 +1 @@
c2a89bdea36d620c9fc9b9c6046a9b9e

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

View file

@ -1,2 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node5" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="77,83,288,112"/>
</map>

View file

@ -1 +1 @@
f4dba53e9191168827f57d46f7f34084
61130cd4d126d001a04bf85c65203887

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMAttr.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMAttr_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMAttr.hpp</h1><a href="DOMAttr_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -48,23 +44,23 @@
<a name="l00020"></a>00020 <span class="comment"> */</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMATTR_HPP)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMATTR_HPP</span>
<a name="l00023"></a><a class="code" href="DOMAttr_8hpp.html#a871264c7a5d636ab012da635e4545a50">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMATTR_HPP</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;xercesc/dom/DOMNode.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNode_8hpp.html">xercesc/dom/DOMNode.hpp</a>&gt;</span>
<a name="l00027"></a>00027
<a name="l00028"></a>00028 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00029"></a>00029
<a name="l00030"></a>00030 <span class="keyword">class </span>DOMElement;
<a name="l00031"></a>00031 <span class="keyword">class </span>DOMTypeInfo;
<a name="l00032"></a>00032
<a name="l00057"></a><a class="code" href="classxercesc_1_1DOMAttr.html">00057</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a> {
<a name="l00057"></a><a class="code" href="classxercesc_1_1DOMAttr.html">00057</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a> {
<a name="l00058"></a>00058 <span class="keyword">protected</span>:
<a name="l00059"></a>00059 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00060"></a>00060 <span class="comment">// Hidden constructors</span>
<a name="l00061"></a>00061 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00064"></a><a class="code" href="classxercesc_1_1DOMAttr.html#af22e3ac423ed416f507f67e99e4a6749">00064</a> <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMAttr.html#af22e3ac423ed416f507f67e99e4a6749">DOMAttr</a>() {}
<a name="l00065"></a><a class="code" href="classxercesc_1_1DOMAttr.html#a2e6e731c03f10a3c8116549556ca2b50">00065</a> <a class="code" href="classxercesc_1_1DOMAttr.html#a2e6e731c03f10a3c8116549556ca2b50">DOMAttr</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a> &amp;other) : <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a>(other) {}
<a name="l00065"></a><a class="code" href="classxercesc_1_1DOMAttr.html#a2e6e731c03f10a3c8116549556ca2b50">00065</a> <a class="code" href="classxercesc_1_1DOMAttr.html#a2e6e731c03f10a3c8116549556ca2b50">DOMAttr</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a> &amp;other) : <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a>(other) {}
<a name="l00067"></a>00067
<a name="l00068"></a>00068 <span class="keyword">private</span>:
<a name="l00069"></a>00069 <span class="comment">// -----------------------------------------------------------------------</span>
@ -95,12 +91,12 @@
<a name="l00125"></a>00125 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00133"></a>00133 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> setValue(<span class="keyword">const</span> XMLCh *value) = 0;
<a name="l00135"></a>00135
<a name="l00144"></a>00144 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when traversing a docume...">DOMElement</a> *getOwnerElement() <span class="keyword">const</span> = 0;
<a name="l00144"></a>00144 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when...">DOMElement</a> *getOwnerElement() <span class="keyword">const</span> = 0;
<a name="l00146"></a>00146
<a name="l00157"></a>00157 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> isId() <span class="keyword">const</span> = 0;
<a name="l00158"></a>00158
<a name="l00159"></a>00159
<a name="l00166"></a>00166 <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMTypeInfo.html" title="The DOMTypeInfo interface represent a type used by DOMElement or DOMAttr nodes, specified in the sche...">DOMTypeInfo</a> * getSchemaTypeInfo() <span class="keyword">const</span> = 0;
<a name="l00166"></a>00166 <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMTypeInfo.html" title="The DOMTypeInfo interface represent a type used by DOMElement or DOMAttr nodes, specified...">DOMTypeInfo</a> * getSchemaTypeInfo() <span class="keyword">const</span> = 0;
<a name="l00167"></a>00167
<a name="l00169"></a>00169
<a name="l00170"></a>00170 };
@ -111,9 +107,8 @@
<a name="l00175"></a>00175 <span class="preprocessor"></span>
<a name="l00176"></a>00176
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,58 +5,73 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMCDATASection.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMText.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMCDATASection.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMText_8hpp_source.html">xercesc/dom/DOMText.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMCDATASection.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMCDATASection_8hpp__incl.png" border="0" usemap="#DOMCDATASection_8hpp" alt=""/></div>
<map name="DOMCDATASection_8hpp" id="DOMCDATASection_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMCDATASection_8hpp__incl.png" border="0" usemap="#DOMCDATASection_8hpp_map" alt=""/></div>
<map name="DOMCDATASection_8hpp_map" id="DOMCDATASection_8hpp">
<area shape="rect" id="node5" href="DOMText_8hpp.html" title="xercesc/dom/DOMText.hpp" alt="" coords="72,83,277,112"/><area shape="rect" id="node8" href="DOMCharacterData_8hpp.html" title="xercesc/dom/DOMCharacterData.hpp" alt="" coords="123,160,400,189"/><area shape="rect" id="node11" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="173,237,384,267"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMCDATASection_8hpp__dep__incl.png" border="0" usemap="#DOMCDATASection_8hppdep_map" alt=""/></div>
<map name="DOMCDATASection_8hppdep_map" id="DOMCDATASection_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="53,83,136,112"/></map>
</div>
<p><a href="DOMCDATASection_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMCDATASection.html">xercesc::DOMCDATASection</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. <a href="classxercesc_1_1DOMCDATASection.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMCDATASection_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMCDATASection.html">xercesc::DOMCDATASection</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. <a href="classxercesc_1_1DOMCDATASection.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMCDATASection_8hpp.html#a4563901bd1769e956b86213be9c1034f">XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="a4563901bd1769e956b86213be9c1034f"></a><!-- doxytag: member="DOMCDATASection.hpp::XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP" ref="a4563901bd1769e956b86213be9c1034f" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="53,83,136,112"/>
</map>

View file

@ -0,0 +1 @@
ac04dbe4b34f7b7381a9e304305f2240

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -1,2 +1,5 @@
<map id="G" name="G">
<area shape="rect" id="node5" href="$DOMText_8hpp.html" title="xercesc/dom/DOMText.hpp" alt="" coords="72,83,277,112"/>
<area shape="rect" id="node8" href="$DOMCharacterData_8hpp.html" title="xercesc/dom/DOMCharacterData.hpp" alt="" coords="123,160,400,189"/>
<area shape="rect" id="node11" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="173,237,384,267"/>
</map>

View file

@ -1 +1 @@
7e5d66fa787fc017886dc5d24ee1f675
0c5393b3c08c6f45430736cf5df60cc6

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMCDATASection.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMCDATASection_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMCDATASection.hpp</h1><a href="DOMCDATASection_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -48,27 +44,27 @@
<a name="l00020"></a>00020 <span class="comment"> */</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP</span>
<a name="l00023"></a><a class="code" href="DOMCDATASection_8hpp.html#a4563901bd1769e956b86213be9c1034f">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;xercesc/dom/DOMText.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMText_8hpp.html">xercesc/dom/DOMText.hpp</a>&gt;</span>
<a name="l00027"></a>00027
<a name="l00028"></a>00028 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00029"></a>00029
<a name="l00030"></a>00030
<a name="l00065"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html">00065</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would otherwise be regard...">DOMCDATASection</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMText.html" title="The DOMText interface inherits from DOMCharacterData and represents the textual content (termed chara...">DOMText</a> {
<a name="l00065"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html">00065</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would...">DOMCDATASection</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMText.html" title="The DOMText interface inherits from DOMCharacterData and represents the textual content...">DOMText</a> {
<a name="l00066"></a>00066 <span class="keyword">protected</span>:
<a name="l00067"></a>00067 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00068"></a>00068 <span class="comment">// Hidden constructors</span>
<a name="l00069"></a>00069 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00072"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html#a3f7b9d233119d52b9e57a5574f6a73d5">00072</a> <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMCDATASection.html#a3f7b9d233119d52b9e57a5574f6a73d5">DOMCDATASection</a>() {}
<a name="l00073"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html#a12b7f586c89bcba93ce005df507543c3">00073</a> <a class="code" href="classxercesc_1_1DOMCDATASection.html#a12b7f586c89bcba93ce005df507543c3">DOMCDATASection</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would otherwise be regard...">DOMCDATASection</a> &amp;other) : <a class="code" href="classxercesc_1_1DOMText.html" title="The DOMText interface inherits from DOMCharacterData and represents the textual content (termed chara...">DOMText</a>(other) {}
<a name="l00073"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html#a12b7f586c89bcba93ce005df507543c3">00073</a> <a class="code" href="classxercesc_1_1DOMCDATASection.html#a12b7f586c89bcba93ce005df507543c3">DOMCDATASection</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would...">DOMCDATASection</a> &amp;other) : <a class="code" href="classxercesc_1_1DOMText.html" title="The DOMText interface inherits from DOMCharacterData and represents the textual content...">DOMText</a>(other) {}
<a name="l00075"></a>00075
<a name="l00076"></a>00076 <span class="keyword">private</span>:
<a name="l00077"></a>00077 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00078"></a>00078 <span class="comment">// Unimplemented constructors and operators</span>
<a name="l00079"></a>00079 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00082"></a>00082 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would otherwise be regard...">DOMCDATASection</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would otherwise be regard...">DOMCDATASection</a> &amp;);
<a name="l00082"></a>00082 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would...">DOMCDATASection</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would...">DOMCDATASection</a> &amp;);
<a name="l00084"></a>00084
<a name="l00085"></a>00085 <span class="keyword">public</span>:
<a name="l00086"></a>00086 <span class="comment">// -----------------------------------------------------------------------</span>
@ -84,9 +80,8 @@
<a name="l00103"></a>00103 <span class="preprocessor"></span>
<a name="l00104"></a>00104
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,58 +5,73 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMCharacterData.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMNode.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMCharacterData.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMNode_8hpp_source.html">xercesc/dom/DOMNode.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMCharacterData.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMCharacterData_8hpp__incl.png" border="0" usemap="#DOMCharacterData_8hpp" alt=""/></div>
<map name="DOMCharacterData_8hpp" id="DOMCharacterData_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMCharacterData_8hpp__incl.png" border="0" usemap="#DOMCharacterData_8hpp_map" alt=""/></div>
<map name="DOMCharacterData_8hpp_map" id="DOMCharacterData_8hpp">
<area shape="rect" id="node5" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="77,83,288,112"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMCharacterData_8hpp__dep__incl.png" border="0" usemap="#DOMCharacterData_8hppdep_map" alt=""/></div>
<map name="DOMCharacterData_8hppdep_map" id="DOMCharacterData_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="118,237,201,267"/><area shape="rect" id="node5" href="DOMComment_8hpp.html" title="DOMComment.hpp" alt="" coords="27,160,179,189"/><area shape="rect" id="node8" href="DOMText_8hpp.html" title="DOMText.hpp" alt="" coords="159,83,274,112"/><area shape="rect" id="node11" href="DOMCDATASection_8hpp.html" title="DOMCDATASection.hpp" alt="" coords="254,160,433,189"/></map>
</div>
<p><a href="DOMCharacterData_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMCharacterData.html">xercesc::DOMCharacterData</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods for accessing cha...">DOMCharacterData</a></code> interface extends <a class="el" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a> with a set of attributes and methods for accessing character data in the DOM. <a href="classxercesc_1_1DOMCharacterData.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMCharacterData_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMCharacterData.html">xercesc::DOMCharacterData</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods...">DOMCharacterData</a></code> interface extends <a class="el" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a> with a set of attributes and methods for accessing character data in the DOM. <a href="classxercesc_1_1DOMCharacterData.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMCharacterData_8hpp.html#a985d5bdd980306dfd7a774d78cf40c7f">XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="a985d5bdd980306dfd7a774d78cf40c7f"></a><!-- doxytag: member="DOMCharacterData.hpp::XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP" ref="a985d5bdd980306dfd7a774d78cf40c7f" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,6 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="118,237,201,267"/>
<area shape="rect" id="node5" href="$DOMComment_8hpp.html" title="DOMComment.hpp" alt="" coords="27,160,179,189"/>
<area shape="rect" id="node8" href="$DOMText_8hpp.html" title="DOMText.hpp" alt="" coords="159,83,274,112"/>
<area shape="rect" id="node11" href="$DOMCDATASection_8hpp.html" title="DOMCDATASection.hpp" alt="" coords="254,160,433,189"/>
</map>

View file

@ -0,0 +1 @@
106ead174c34ae150c69620356cb7c40

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -1,2 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node5" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="77,83,288,112"/>
</map>

View file

@ -1 +1 @@
3a107b92072366cc450d96d8424b347e
517f97dca96b3a2828b6c11dd385ebf0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMCharacterData.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMCharacterData_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMCharacterData.hpp</h1><a href="DOMCharacterData_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -48,27 +44,27 @@
<a name="l00020"></a>00020 <span class="comment"> */</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP</span>
<a name="l00023"></a><a class="code" href="DOMCharacterData_8hpp.html#a985d5bdd980306dfd7a774d78cf40c7f">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;xercesc/dom/DOMNode.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNode_8hpp.html">xercesc/dom/DOMNode.hpp</a>&gt;</span>
<a name="l00027"></a>00027
<a name="l00028"></a>00028 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00029"></a>00029
<a name="l00030"></a>00030
<a name="l00046"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html">00046</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods for accessing cha...">DOMCharacterData</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a> {
<a name="l00046"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html">00046</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods...">DOMCharacterData</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a> {
<a name="l00047"></a>00047 <span class="keyword">protected</span>:
<a name="l00048"></a>00048 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00049"></a>00049 <span class="comment">// Hidden constructors</span>
<a name="l00050"></a>00050 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00053"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html#a82779b668e65db522db4fb869d97b638">00053</a> <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMCharacterData.html#a82779b668e65db522db4fb869d97b638">DOMCharacterData</a>() {}
<a name="l00054"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html#a6f78323a15eba8db2d1c272d845d4025">00054</a> <a class="code" href="classxercesc_1_1DOMCharacterData.html#a6f78323a15eba8db2d1c272d845d4025">DOMCharacterData</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods for accessing cha...">DOMCharacterData</a> &amp;other) : <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a>(other) {}
<a name="l00054"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html#a6f78323a15eba8db2d1c272d845d4025">00054</a> <a class="code" href="classxercesc_1_1DOMCharacterData.html#a6f78323a15eba8db2d1c272d845d4025">DOMCharacterData</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods...">DOMCharacterData</a> &amp;other) : <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a>(other) {}
<a name="l00056"></a>00056
<a name="l00057"></a>00057 <span class="keyword">private</span>:
<a name="l00058"></a>00058 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00059"></a>00059 <span class="comment">// Unimplemented constructors and operators</span>
<a name="l00060"></a>00060 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00063"></a>00063 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods for accessing cha...">DOMCharacterData</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods for accessing cha...">DOMCharacterData</a> &amp;);
<a name="l00063"></a>00063 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods...">DOMCharacterData</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods...">DOMCharacterData</a> &amp;);
<a name="l00065"></a>00065
<a name="l00066"></a>00066 <span class="keyword">public</span>:
<a name="l00067"></a>00067 <span class="comment">// -----------------------------------------------------------------------</span>
@ -113,9 +109,8 @@
<a name="l00214"></a>00214 <span class="preprocessor"></span>
<a name="l00215"></a>00215
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,58 +5,73 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMComment.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMCharacterData.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMComment.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMCharacterData_8hpp_source.html">xercesc/dom/DOMCharacterData.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMComment.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMComment_8hpp__incl.png" border="0" usemap="#DOMComment_8hpp" alt=""/></div>
<map name="DOMComment_8hpp" id="DOMComment_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMComment_8hpp__incl.png" border="0" usemap="#DOMComment_8hpp_map" alt=""/></div>
<map name="DOMComment_8hpp_map" id="DOMComment_8hpp">
<area shape="rect" id="node5" href="DOMCharacterData_8hpp.html" title="xercesc/dom/DOMCharacterData.hpp" alt="" coords="97,83,375,112"/><area shape="rect" id="node8" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="148,160,359,189"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMComment_8hpp__dep__incl.png" border="0" usemap="#DOMComment_8hppdep_map" alt=""/></div>
<map name="DOMComment_8hppdep_map" id="DOMComment_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="40,83,123,112"/></map>
</div>
<p><a href="DOMComment_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMComment.html">xercesc::DOMComment</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">This interface inherits from <code>CharacterData</code> and represents the content of a comment, i.e., all the characters between the starting ' <code>&lt;!--</code>' and ending '<code>--&gt;</code>'. <a href="classxercesc_1_1DOMComment.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMComment_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMComment.html">xercesc::DOMComment</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface inherits from <code>CharacterData</code> and represents the content of a comment, i.e., all the characters between the starting ' <code>&lt;!--</code>' and ending '<code>--&gt;</code>'. <a href="classxercesc_1_1DOMComment.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMComment_8hpp.html#ac22e5cda89ad00538fc22e8f4c8c72b9">XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="ac22e5cda89ad00538fc22e8f4c8c72b9"></a><!-- doxytag: member="DOMComment.hpp::XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP" ref="ac22e5cda89ad00538fc22e8f4c8c72b9" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="40,83,123,112"/>
</map>

View file

@ -0,0 +1 @@
292fa8f09f86089381424f1d577a9790

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -1,2 +1,4 @@
<map id="G" name="G">
<area shape="rect" id="node5" href="$DOMCharacterData_8hpp.html" title="xercesc/dom/DOMCharacterData.hpp" alt="" coords="97,83,375,112"/>
<area shape="rect" id="node8" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="148,160,359,189"/>
</map>

View file

@ -1 +1 @@
e94c349da7fd6da94992e9be177faf48
f2dafefaa3dc10ce9835b4bf00ba75c2

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMComment.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMComment_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMComment.hpp</h1><a href="DOMComment_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -48,15 +44,15 @@
<a name="l00020"></a>00020 <span class="comment"> */</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP</span>
<a name="l00023"></a><a class="code" href="DOMComment_8hpp.html#ac22e5cda89ad00538fc22e8f4c8c72b9">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;xercesc/dom/DOMCharacterData.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMCharacterData_8hpp.html">xercesc/dom/DOMCharacterData.hpp</a>&gt;</span>
<a name="l00027"></a>00027
<a name="l00028"></a>00028 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00029"></a>00029
<a name="l00030"></a>00030
<a name="l00039"></a><a class="code" href="classxercesc_1_1DOMComment.html">00039</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting &amp;#39; &amp;lt;!--&amp;#39; and ending &amp;#39;--&amp;gt;&amp;#39;.">DOMComment</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods for accessing cha...">DOMCharacterData</a> {
<a name="l00039"></a><a class="code" href="classxercesc_1_1DOMComment.html">00039</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment...">DOMComment</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMCharacterData.html" title="The DOMCharacterData interface extends DOMNode with a set of attributes and methods...">DOMCharacterData</a> {
<a name="l00040"></a>00040 <span class="keyword">protected</span>:
<a name="l00041"></a>00041 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00042"></a>00042 <span class="comment">// Hidden constructors</span>
@ -67,8 +63,8 @@
<a name="l00050"></a>00050 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00051"></a>00051 <span class="comment">// Unimplemented constructors and operators</span>
<a name="l00052"></a>00052 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00055"></a>00055 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting &amp;#39; &amp;lt;!--&amp;#39; and ending &amp;#39;--&amp;gt;&amp;#39;.">DOMComment</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting &amp;#39; &amp;lt;!--&amp;#39; and ending &amp;#39;--&amp;gt;&amp;#39;.">DOMComment</a> &amp;);
<a name="l00056"></a>00056 <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting &amp;#39; &amp;lt;!--&amp;#39; and ending &amp;#39;--&amp;gt;&amp;#39;.">DOMComment</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting &amp;#39; &amp;lt;!--&amp;#39; and ending &amp;#39;--&amp;gt;&amp;#39;.">DOMComment</a> &amp;);
<a name="l00055"></a>00055 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment...">DOMComment</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment...">DOMComment</a> &amp;);
<a name="l00056"></a>00056 <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment...">DOMComment</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment...">DOMComment</a> &amp;);
<a name="l00058"></a>00058
<a name="l00059"></a>00059 <span class="keyword">public</span>:
<a name="l00060"></a>00060 <span class="comment">// -----------------------------------------------------------------------</span>
@ -82,9 +78,8 @@
<a name="l00075"></a>00075 <span class="preprocessor">#endif</span>
<a name="l00076"></a>00076 <span class="preprocessor"></span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,59 +5,74 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMConfiguration.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XMLString.hpp&gt;</code><br/>
<h1>DOMConfiguration.hpp File Reference</h1><code>#include &lt;xercesc/util/XMLString.hpp&gt;</code><br/>
<code>#include &lt;xercesc/util/RefVectorOf.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMStringList.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<code>#include &lt;<a class="el" href="DOMStringList_8hpp_source.html">xercesc/dom/DOMStringList.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMConfiguration.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMConfiguration_8hpp__incl.png" border="0" usemap="#DOMConfiguration_8hpp" alt=""/></div>
<map name="DOMConfiguration_8hpp" id="DOMConfiguration_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMConfiguration_8hpp__incl.png" border="0" usemap="#DOMConfiguration_8hpp_map" alt=""/></div>
<map name="DOMConfiguration_8hpp_map" id="DOMConfiguration_8hpp">
<area shape="rect" id="node7" href="DOMStringList_8hpp.html" title="xercesc/dom/DOMStringList.hpp" alt="" coords="469,83,707,112"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMConfiguration_8hpp__dep__incl.png" border="0" usemap="#DOMConfiguration_8hppdep_map" alt=""/></div>
<map name="DOMConfiguration_8hppdep_map" id="DOMConfiguration_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="51,160,133,189"/><area shape="rect" id="node5" href="DOMLSParser_8hpp.html" title="DOMLSParser.hpp" alt="" coords="21,83,163,112"/><area shape="rect" id="node8" href="DOMLSSerializer_8hpp.html" title="DOMLSSerializer.hpp" alt="" coords="187,83,347,112"/></map>
</div>
<p><a href="DOMConfiguration_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMConfiguration.html">xercesc::DOMConfiguration</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The <a class="el" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains a table of re...">DOMConfiguration</a> interface represents the configuration of a document and maintains a table of recognized parameters. <a href="classxercesc_1_1DOMConfiguration.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMConfiguration_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMConfiguration.html">xercesc::DOMConfiguration</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <a class="el" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains...">DOMConfiguration</a> interface represents the configuration of a document and maintains a table of recognized parameters. <a href="classxercesc_1_1DOMConfiguration.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMConfiguration_8hpp.html#ac2b8d53ab0e5fb9defc79e956efa5cce">XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="ac2b8d53ab0e5fb9defc79e956efa5cce"></a><!-- doxytag: member="DOMConfiguration.hpp::XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP" ref="ac2b8d53ab0e5fb9defc79e956efa5cce" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,5 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="51,160,133,189"/>
<area shape="rect" id="node5" href="$DOMLSParser_8hpp.html" title="DOMLSParser.hpp" alt="" coords="21,83,163,112"/>
<area shape="rect" id="node8" href="$DOMLSSerializer_8hpp.html" title="DOMLSSerializer.hpp" alt="" coords="187,83,347,112"/>
</map>

View file

@ -0,0 +1 @@
89928094e5984fd7ab2d388fcfeaf55c

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,2 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node7" href="$DOMStringList_8hpp.html" title="xercesc/dom/DOMStringList.hpp" alt="" coords="469,83,707,112"/>
</map>

View file

@ -1 +1 @@
853bb5331b05b5db113da0a240eac0cf
c437937abb3fe8cef80b223a0718eac9

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMConfiguration.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMConfiguration_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMConfiguration.hpp</h1><a href="DOMConfiguration_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -44,7 +40,7 @@
<a name="l00016"></a>00016 <span class="comment"> */</span>
<a name="l00017"></a>00017
<a name="l00018"></a>00018 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP)</span>
<a name="l00019"></a>00019 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP</span>
<a name="l00019"></a><a class="code" href="DOMConfiguration_8hpp.html#ac2b8d53ab0e5fb9defc79e956efa5cce">00019</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP</span>
<a name="l00020"></a>00020 <span class="preprocessor"></span>
<a name="l00021"></a>00021 <span class="comment">//------------------------------------------------------------------------------------</span>
<a name="l00022"></a>00022 <span class="comment">// Includes</span>
@ -52,11 +48,11 @@
<a name="l00024"></a>00024
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XMLString.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;xercesc/util/RefVectorOf.hpp&gt;</span>
<a name="l00027"></a>00027 <span class="preprocessor">#include &lt;xercesc/dom/DOMStringList.hpp&gt;</span>
<a name="l00027"></a>00027 <span class="preprocessor">#include &lt;<a class="code" href="DOMStringList_8hpp.html">xercesc/dom/DOMStringList.hpp</a>&gt;</span>
<a name="l00028"></a>00028
<a name="l00029"></a>00029 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00030"></a>00030
<a name="l00350"></a><a class="code" href="classxercesc_1_1DOMConfiguration.html">00350</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains a table of re...">DOMConfiguration</a>
<a name="l00350"></a><a class="code" href="classxercesc_1_1DOMConfiguration.html">00350</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains...">DOMConfiguration</a>
<a name="l00351"></a>00351 {
<a name="l00352"></a>00352 <span class="keyword">protected</span>:
<a name="l00353"></a>00353 <span class="comment">//-----------------------------------------------------------------------------------</span>
@ -68,8 +64,8 @@
<a name="l00362"></a>00362 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00363"></a>00363 <span class="comment">// Unimplemented constructors and operators</span>
<a name="l00364"></a>00364 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00367"></a>00367 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains a table of re...">DOMConfiguration</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains a table of re...">DOMConfiguration</a> &amp;);
<a name="l00368"></a>00368 <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains a table of re...">DOMConfiguration</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains a table of re...">DOMConfiguration</a> &amp;);
<a name="l00367"></a>00367 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains...">DOMConfiguration</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains...">DOMConfiguration</a> &amp;);
<a name="l00368"></a>00368 <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains...">DOMConfiguration</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains...">DOMConfiguration</a> &amp;);
<a name="l00370"></a>00370
<a name="l00371"></a>00371 <span class="keyword">public</span>:
<a name="l00372"></a>00372
@ -93,7 +89,7 @@
<a name="l00422"></a>00422 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> canSetParameter(<span class="keyword">const</span> XMLCh* name, <span class="keyword">const</span> <span class="keywordtype">void</span>* value) <span class="keyword">const</span> = 0;
<a name="l00423"></a>00423 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> canSetParameter(<span class="keyword">const</span> XMLCh* name, <span class="keywordtype">bool</span> value) <span class="keyword">const</span> = 0;
<a name="l00424"></a>00424
<a name="l00433"></a>00433 <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMStringList.html" title="The DOMStringList interface provides the abstraction of an ordered collection of strings, without defining or constraining how this collection is implemented.">DOMStringList</a>* getParameterNames() <span class="keyword">const</span> = 0;
<a name="l00433"></a>00433 <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMStringList.html" title="The DOMStringList interface provides the abstraction of an ordered collection of...">DOMStringList</a>* getParameterNames() <span class="keyword">const</span> = 0;
<a name="l00434"></a>00434
<a name="l00435"></a>00435 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00436"></a>00436 <span class="comment">// All constructors are hidden, just the destructor is available</span>
@ -106,9 +102,8 @@
<a name="l00450"></a>00450 <span class="preprocessor">#endif </span>
<a name="l00451"></a>00451 <span class="preprocessor"></span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,58 +5,73 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMDocumentFragment.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMNode.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMDocumentFragment.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMNode_8hpp_source.html">xercesc/dom/DOMNode.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMDocumentFragment.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMDocumentFragment_8hpp__incl.png" border="0" usemap="#DOMDocumentFragment_8hpp" alt=""/></div>
<map name="DOMDocumentFragment_8hpp" id="DOMDocumentFragment_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMDocumentFragment_8hpp__incl.png" border="0" usemap="#DOMDocumentFragment_8hpp_map" alt=""/></div>
<map name="DOMDocumentFragment_8hpp_map" id="DOMDocumentFragment_8hpp">
<area shape="rect" id="node5" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="83,83,293,112"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMDocumentFragment_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentFragment_8hppdep_map" alt=""/></div>
<map name="DOMDocumentFragment_8hppdep_map" id="DOMDocumentFragment_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="75,83,157,112"/></map>
</div>
<p><a href="DOMDocumentFragment_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">xercesc::DOMDocumentFragment</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &quot;lightweight&quot; or &quot;minimal&quot; DOMDocument object...">DOMDocumentFragment</a> is a "lightweight" or "minimal" <a class="el" href="classxercesc_1_1DOMDocument.html" title="The DOMDocument interface represents the entire XML document.">DOMDocument</a> object. <a href="classxercesc_1_1DOMDocumentFragment.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMDocumentFragment_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">xercesc::DOMDocumentFragment</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &quot;lightweight&quot; or &quot;minimal&quot; DOMDocument...">DOMDocumentFragment</a> is a "lightweight" or "minimal" <a class="el" href="classxercesc_1_1DOMDocument.html" title="The DOMDocument interface represents the entire XML document.">DOMDocument</a> object. <a href="classxercesc_1_1DOMDocumentFragment.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentFragment_8hpp.html#a1a38116607825a6d0f95cb726a1f3a14">XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="a1a38116607825a6d0f95cb726a1f3a14"></a><!-- doxytag: member="DOMDocumentFragment.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP" ref="a1a38116607825a6d0f95cb726a1f3a14" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="75,83,157,112"/>
</map>

View file

@ -0,0 +1 @@
409ed175f34867db3efabea83056ceea

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -1,2 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node5" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="83,83,293,112"/>
</map>

View file

@ -1 +1 @@
56b4076cc0cd4bc6bc0ad786bbbc6aba
73b35b6305c689d316f552aa82ba609d

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMDocumentFragment.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMDocumentFragment_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMDocumentFragment.hpp</h1><a href="DOMDocumentFragment_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -44,19 +40,19 @@
<a name="l00016"></a>00016 <span class="comment"> */</span>
<a name="l00017"></a>00017
<a name="l00018"></a>00018 <span class="comment">/*</span>
<a name="l00019"></a>00019 <span class="comment"> * $Id: DOMDocumentFragment.hpp 527149 2007-04-10 14:56:39Z amassari $</span>
<a name="l00019"></a>00019 <span class="comment"> * $Id: DOMDocumentFragment.hpp 932887 2010-04-11 13:04:59Z borisk $</span>
<a name="l00020"></a>00020 <span class="comment"> */</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP</span>
<a name="l00023"></a><a class="code" href="DOMDocumentFragment_8hpp.html#a1a38116607825a6d0f95cb726a1f3a14">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;xercesc/dom/DOMNode.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNode_8hpp.html">xercesc/dom/DOMNode.hpp</a>&gt;</span>
<a name="l00027"></a>00027
<a name="l00028"></a>00028 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00029"></a>00029
<a name="l00030"></a>00030
<a name="l00071"></a><a class="code" href="classxercesc_1_1DOMDocumentFragment.html">00071</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument object...">DOMDocumentFragment</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a> {
<a name="l00071"></a><a class="code" href="classxercesc_1_1DOMDocumentFragment.html">00071</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument...">DOMDocumentFragment</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a> {
<a name="l00072"></a>00072 <span class="keyword">protected</span>:
<a name="l00073"></a>00073 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00074"></a>00074 <span class="comment">// Hidden constructors</span>
@ -67,8 +63,8 @@
<a name="l00082"></a>00082 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00083"></a>00083 <span class="comment">// Unimplemented constructors and operators</span>
<a name="l00084"></a>00084 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00087"></a>00087 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument object...">DOMDocumentFragment</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument object...">DOMDocumentFragment</a> &amp;);
<a name="l00088"></a>00088 <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument object...">DOMDocumentFragment</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument object...">DOMDocumentFragment</a> &amp;);
<a name="l00087"></a>00087 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument...">DOMDocumentFragment</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument...">DOMDocumentFragment</a> &amp;);
<a name="l00088"></a>00088 <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument...">DOMDocumentFragment</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument...">DOMDocumentFragment</a> &amp;);
<a name="l00090"></a>00090
<a name="l00091"></a>00091 <span class="keyword">public</span>:
<a name="l00092"></a>00092 <span class="comment">// -----------------------------------------------------------------------</span>
@ -82,9 +78,8 @@
<a name="l00107"></a>00107
<a name="l00108"></a>00108 <span class="preprocessor">#endif</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,56 +5,69 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMDocumentRange.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMDocumentRange.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMDocumentRange.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMDocumentRange_8hpp__incl.png" border="0" usemap="#DOMDocumentRange_8hpp" alt=""/></div>
<map name="DOMDocumentRange_8hpp" id="DOMDocumentRange_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMDocumentRange_8hpp__incl.png" border="0" usemap="#DOMDocumentRange_8hpp_map" alt=""/></div>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMDocumentRange_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentRange_8hppdep_map" alt=""/></div>
<map name="DOMDocumentRange_8hppdep_map" id="DOMDocumentRange_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="63,160,145,189"/><area shape="rect" id="node5" href="DOMDocument_8hpp.html" title="DOMDocument.hpp" alt="" coords="84,83,239,112"/></map>
</div>
<p><a href="DOMDocumentRange_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentRange.html">xercesc::DOMDocumentRange</a></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMDocumentRange_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentRange.html">xercesc::DOMDocumentRange</a></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentRange_8hpp.html#a120527bc9b34b8b4f63110d2008469c7">XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="a120527bc9b34b8b4f63110d2008469c7"></a><!-- doxytag: member="DOMDocumentRange.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP" ref="a120527bc9b34b8b4f63110d2008469c7" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,4 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="63,160,145,189"/>
<area shape="rect" id="node5" href="$DOMDocument_8hpp.html" title="DOMDocument.hpp" alt="" coords="84,83,239,112"/>
</map>

View file

@ -0,0 +1 @@
b75ecf5a02ae9e3b0ae4d9dd01b3a42f

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -1 +1 @@
efa4769bb9b4c9252c0443b6866d8d43
73c2fb4cb2fc3a0b85c145cf3228b05c

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMDocumentRange.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMDocumentRange_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMDocumentRange.hpp</h1><a href="DOMDocumentRange_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -48,7 +44,7 @@
<a name="l00020"></a>00020 <span class="comment">*/</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP</span>
<a name="l00023"></a><a class="code" href="DOMDocumentRange_8hpp.html#a120527bc9b34b8b4f63110d2008469c7">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
<a name="l00026"></a>00026
@ -91,9 +87,8 @@
<a name="l00094"></a>00094
<a name="l00095"></a>00095 <span class="preprocessor">#endif</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,58 +5,73 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMDocumentTraversal.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMNodeFilter.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMDocumentTraversal.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMNodeFilter_8hpp_source.html">xercesc/dom/DOMNodeFilter.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMDocumentTraversal.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMDocumentTraversal_8hpp__incl.png" border="0" usemap="#DOMDocumentTraversal_8hpp" alt=""/></div>
<map name="DOMDocumentTraversal_8hpp" id="DOMDocumentTraversal_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMDocumentTraversal_8hpp__incl.png" border="0" usemap="#DOMDocumentTraversal_8hpp_map" alt=""/></div>
<map name="DOMDocumentTraversal_8hpp_map" id="DOMDocumentTraversal_8hpp">
<area shape="rect" id="node5" href="DOMNodeFilter_8hpp.html" title="xercesc/dom/DOMNodeFilter.hpp" alt="" coords="73,83,316,112"/><area shape="rect" id="node7" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="81,160,292,189"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMDocumentTraversal_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentTraversal_8hppdep_map" alt=""/></div>
<map name="DOMDocumentTraversal_8hppdep_map" id="DOMDocumentTraversal_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="71,160,153,189"/><area shape="rect" id="node5" href="DOMDocument_8hpp.html" title="DOMDocument.hpp" alt="" coords="92,83,247,112"/></map>
</div>
<p><a href="DOMDocumentTraversal_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentTraversal.html">xercesc::DOMDocumentTraversal</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><code><a class="el" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers to traverse a n...">DOMDocumentTraversal</a></code> contains methods that create <code>DOMNodeIterators</code> and <code>DOMTreeWalkers</code> to traverse a node and its children in document order (depth first, pre-order traversal, which is equivalent to the order in which the start tags occur in the text representation of the document). <a href="classxercesc_1_1DOMDocumentTraversal.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMDocumentTraversal_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentTraversal.html">xercesc::DOMDocumentTraversal</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><code><a class="el" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers...">DOMDocumentTraversal</a></code> contains methods that create <code>DOMNodeIterators</code> and <code>DOMTreeWalkers</code> to traverse a node and its children in document order (depth first, pre-order traversal, which is equivalent to the order in which the start tags occur in the text representation of the document). <a href="classxercesc_1_1DOMDocumentTraversal.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentTraversal_8hpp.html#a31aaa3c1a2403e6f0e213f38b2329f1d">XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="a31aaa3c1a2403e6f0e213f38b2329f1d"></a><!-- doxytag: member="DOMDocumentTraversal.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP" ref="a31aaa3c1a2403e6f0e213f38b2329f1d" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,4 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="71,160,153,189"/>
<area shape="rect" id="node5" href="$DOMDocument_8hpp.html" title="DOMDocument.hpp" alt="" coords="92,83,247,112"/>
</map>

View file

@ -0,0 +1 @@
ee01c3f17a658fd3dd4fd17577adcda1

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -1,2 +1,4 @@
<map id="G" name="G">
<area shape="rect" id="node5" href="$DOMNodeFilter_8hpp.html" title="xercesc/dom/DOMNodeFilter.hpp" alt="" coords="73,83,316,112"/>
<area shape="rect" id="node7" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="81,160,292,189"/>
</map>

View file

@ -1 +1 @@
e039f3bc0c0385e1a2dfd971d0a8e028
ac5855ee7061ae65563a20416a039257

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMDocumentTraversal.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMDocumentTraversal_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMDocumentTraversal.hpp</h1><a href="DOMDocumentTraversal_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -48,10 +44,10 @@
<a name="l00020"></a>00020 <span class="comment">*/</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP</span>
<a name="l00023"></a><a class="code" href="DOMDocumentTraversal_8hpp.html#a31aaa3c1a2403e6f0e213f38b2329f1d">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;xercesc/dom/DOMNodeFilter.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNodeFilter_8hpp.html">xercesc/dom/DOMNodeFilter.hpp</a>&gt;</span>
<a name="l00027"></a>00027
<a name="l00028"></a>00028 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00029"></a>00029
@ -61,7 +57,7 @@
<a name="l00033"></a>00033 <span class="keyword">class </span>DOMTreeWalker;
<a name="l00034"></a>00034
<a name="l00035"></a>00035
<a name="l00047"></a><a class="code" href="classxercesc_1_1DOMDocumentTraversal.html">00047</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers to traverse a n...">DOMDocumentTraversal</a> {
<a name="l00047"></a><a class="code" href="classxercesc_1_1DOMDocumentTraversal.html">00047</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers...">DOMDocumentTraversal</a> {
<a name="l00048"></a>00048
<a name="l00049"></a>00049 <span class="keyword">protected</span>:
<a name="l00050"></a>00050 <span class="comment">// -----------------------------------------------------------------------</span>
@ -73,8 +69,8 @@
<a name="l00059"></a>00059 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00060"></a>00060 <span class="comment">// Unimplemented constructors and operators</span>
<a name="l00061"></a>00061 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00064"></a>00064 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers to traverse a n...">DOMDocumentTraversal</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers to traverse a n...">DOMDocumentTraversal</a> &amp;);
<a name="l00065"></a>00065 <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers to traverse a n...">DOMDocumentTraversal</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers to traverse a n...">DOMDocumentTraversal</a> &amp;);
<a name="l00064"></a>00064 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers...">DOMDocumentTraversal</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers...">DOMDocumentTraversal</a> &amp;);
<a name="l00065"></a>00065 <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers...">DOMDocumentTraversal</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers...">DOMDocumentTraversal</a> &amp;);
<a name="l00067"></a>00067
<a name="l00068"></a>00068 <span class="keyword">public</span>:
<a name="l00069"></a>00069 <span class="comment">// -----------------------------------------------------------------------</span>
@ -85,12 +81,12 @@
<a name="l00081"></a>00081 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00082"></a>00082 <span class="comment">// Virtual DOMDocumentRange interface</span>
<a name="l00083"></a>00083 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00110"></a>00110 <span class="comment"></span> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNodeIterator.html" title="DOMNodeIterators are used to step through a set of nodes, e.g.">DOMNodeIterator</a> *createNodeIterator(<a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a>* root,
<a name="l00111"></a>00111 <a class="code" href="classxercesc_1_1DOMNodeFilter.html#a321889e59b1aa23cd84e980cbb415c0c">DOMNodeFilter::ShowType</a> whatToShow,
<a name="l00110"></a>00110 <span class="comment"></span> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNodeIterator.html" title="DOMNodeIterators are used to step through a set of nodes, e.g.">DOMNodeIterator</a> *createNodeIterator(<a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a>* root,
<a name="l00111"></a>00111 DOMNodeFilter::ShowType whatToShow,
<a name="l00112"></a>00112 <a class="code" href="classxercesc_1_1DOMNodeFilter.html" title="Filters are objects that know how to &amp;quot;filter out&amp;quot; nodes.">DOMNodeFilter</a>* filter,
<a name="l00113"></a>00113 <span class="keywordtype">bool</span> entityReferenceExpansion) = 0;
<a name="l00144"></a>00144 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMTreeWalker.html" title="DOMTreeWalker objects are used to navigate a document tree or subtree using the view of the document ...">DOMTreeWalker</a> *createTreeWalker(<a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a>* root,
<a name="l00145"></a>00145 <a class="code" href="classxercesc_1_1DOMNodeFilter.html#a321889e59b1aa23cd84e980cbb415c0c">DOMNodeFilter::ShowType</a> whatToShow,
<a name="l00144"></a>00144 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMTreeWalker.html" title="DOMTreeWalker objects are used to navigate a document tree or subtree using the view...">DOMTreeWalker</a> *createTreeWalker(<a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a>* root,
<a name="l00145"></a>00145 DOMNodeFilter::ShowType whatToShow,
<a name="l00146"></a>00146 <a class="code" href="classxercesc_1_1DOMNodeFilter.html" title="Filters are objects that know how to &amp;quot;filter out&amp;quot; nodes.">DOMNodeFilter</a>* filter,
<a name="l00147"></a>00147 <span class="keywordtype">bool</span> entityReferenceExpansion) = 0;
<a name="l00148"></a>00148
@ -101,9 +97,8 @@
<a name="l00154"></a>00154
<a name="l00155"></a>00155 <span class="preprocessor">#endif</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,58 +5,73 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMDocumentType.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMNode.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMDocumentType.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMNode_8hpp_source.html">xercesc/dom/DOMNode.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMDocumentType.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMDocumentType_8hpp__incl.png" border="0" usemap="#DOMDocumentType_8hpp" alt=""/></div>
<map name="DOMDocumentType_8hpp" id="DOMDocumentType_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMDocumentType_8hpp__incl.png" border="0" usemap="#DOMDocumentType_8hpp_map" alt=""/></div>
<map name="DOMDocumentType_8hpp_map" id="DOMDocumentType_8hpp">
<area shape="rect" id="node5" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="77,83,288,112"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMDocumentType_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentType_8hppdep_map" alt=""/></div>
<map name="DOMDocumentType_8hppdep_map" id="DOMDocumentType_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="57,83,140,112"/></map>
</div>
<p><a href="DOMDocumentType_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentType.html">xercesc::DOMDocumentType</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Each <code><a class="el" href="classxercesc_1_1DOMDocument.html" title="The DOMDocument interface represents the entire XML document.">DOMDocument</a></code> has a <code>doctype</code> attribute whose value is either <code>null</code> or a <code><a class="el" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object...">DOMDocumentType</a></code> object. <a href="classxercesc_1_1DOMDocumentType.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMDocumentType_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentType.html">xercesc::DOMDocumentType</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Each <code><a class="el" href="classxercesc_1_1DOMDocument.html" title="The DOMDocument interface represents the entire XML document.">DOMDocument</a></code> has a <code>doctype</code> attribute whose value is either <code>null</code> or a <code><a class="el" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType...">DOMDocumentType</a></code> object. <a href="classxercesc_1_1DOMDocumentType.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentType_8hpp.html#a02aaa1ca6b779a692fb3a6ca09977cb5">XERCESC_INCLUDE_GUARD_DOMDOCUMENTTYPE_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="a02aaa1ca6b779a692fb3a6ca09977cb5"></a><!-- doxytag: member="DOMDocumentType.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTTYPE_HPP" ref="a02aaa1ca6b779a692fb3a6ca09977cb5" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTTYPE_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="57,83,140,112"/>
</map>

View file

@ -0,0 +1 @@
1d6fae954ca80cc8c1d90d913cb8b5ec

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -1,2 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node5" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="77,83,288,112"/>
</map>

View file

@ -1 +1 @@
2782c9bfcef42d3f4579453c11f47f05
ef12996700dcc0e76be3bab87810349f

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMDocumentType.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMDocumentType_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMDocumentType.hpp</h1><a href="DOMDocumentType_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -48,17 +44,17 @@
<a name="l00020"></a>00020 <span class="comment"> */</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMDOCUMENTTYPE_HPP)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTTYPE_HPP</span>
<a name="l00023"></a><a class="code" href="DOMDocumentType_8hpp.html#a02aaa1ca6b779a692fb3a6ca09977cb5">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTTYPE_HPP</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;xercesc/dom/DOMNode.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNode_8hpp.html">xercesc/dom/DOMNode.hpp</a>&gt;</span>
<a name="l00027"></a>00027
<a name="l00028"></a>00028 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00029"></a>00029
<a name="l00030"></a>00030
<a name="l00031"></a>00031 <span class="keyword">class </span>DOMNamedNodeMap;
<a name="l00032"></a>00032
<a name="l00045"></a><a class="code" href="classxercesc_1_1DOMDocumentType.html">00045</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object...">DOMDocumentType</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a> {
<a name="l00045"></a><a class="code" href="classxercesc_1_1DOMDocumentType.html">00045</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType...">DOMDocumentType</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a> {
<a name="l00046"></a>00046 <span class="keyword">protected</span>:
<a name="l00047"></a>00047 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00048"></a>00048 <span class="comment">// Hidden constructors</span>
@ -69,8 +65,8 @@
<a name="l00056"></a>00056 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00057"></a>00057 <span class="comment">// Unimplemented constructors and operators</span>
<a name="l00058"></a>00058 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00061"></a>00061 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object...">DOMDocumentType</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object...">DOMDocumentType</a> &amp;);
<a name="l00062"></a>00062 <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object...">DOMDocumentType</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object...">DOMDocumentType</a> &amp;);
<a name="l00061"></a>00061 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType...">DOMDocumentType</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType...">DOMDocumentType</a> &amp;);
<a name="l00062"></a>00062 <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType...">DOMDocumentType</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType...">DOMDocumentType</a> &amp;);
<a name="l00064"></a>00064
<a name="l00065"></a>00065 <span class="keyword">public</span>:
<a name="l00066"></a>00066 <span class="comment">// -----------------------------------------------------------------------</span>
@ -83,10 +79,10 @@
<a name="l00080"></a>00080 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00089"></a>00089 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * getName() <span class="keyword">const</span> = 0;
<a name="l00090"></a>00090
<a name="l00108"></a>00108 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNamedNodeMap.html" title="DOMNamedNodeMaps are used to represent collections of nodes that can be accessed by name...">DOMNamedNodeMap</a> *getEntities() <span class="keyword">const</span> = 0;
<a name="l00108"></a>00108 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNamedNodeMap.html" title="DOMNamedNodeMaps are used to represent collections of nodes that can be accessed...">DOMNamedNodeMap</a> *getEntities() <span class="keyword">const</span> = 0;
<a name="l00109"></a>00109
<a name="l00110"></a>00110
<a name="l00120"></a>00120 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNamedNodeMap.html" title="DOMNamedNodeMaps are used to represent collections of nodes that can be accessed by name...">DOMNamedNodeMap</a> *getNotations() <span class="keyword">const</span> = 0;
<a name="l00120"></a>00120 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNamedNodeMap.html" title="DOMNamedNodeMaps are used to represent collections of nodes that can be accessed...">DOMNamedNodeMap</a> *getNotations() <span class="keyword">const</span> = 0;
<a name="l00122"></a>00122
<a name="l00131"></a>00131 <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * getPublicId() <span class="keyword">const</span> = 0;
<a name="l00132"></a>00132
@ -102,9 +98,8 @@
<a name="l00159"></a>00159 <span class="preprocessor"></span>
<a name="l00160"></a>00160
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,61 +5,76 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMDocument.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMNode.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMDocumentRange.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMDocumentTraversal.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMXPathEvaluator.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMDocument.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMNode_8hpp_source.html">xercesc/dom/DOMNode.hpp</a>&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMDocumentRange_8hpp_source.html">xercesc/dom/DOMDocumentRange.hpp</a>&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMDocumentTraversal_8hpp_source.html">xercesc/dom/DOMDocumentTraversal.hpp</a>&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMXPathEvaluator_8hpp_source.html">xercesc/dom/DOMXPathEvaluator.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMDocument.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMDocument_8hpp__incl.png" border="0" usemap="#DOMDocument_8hpp" alt=""/></div>
<map name="DOMDocument_8hpp" id="DOMDocument_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMDocument_8hpp__incl.png" border="0" usemap="#DOMDocument_8hpp_map" alt=""/></div>
<map name="DOMDocument_8hpp_map" id="DOMDocument_8hpp">
<area shape="rect" id="node5" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="68,237,278,267"/><area shape="rect" id="node8" href="DOMDocumentRange_8hpp.html" title="xercesc/dom/DOMDocumentRange.hpp" alt="" coords="366,83,657,112"/><area shape="rect" id="node11" href="DOMDocumentTraversal_8hpp.html" title="xercesc/dom/DOMDocumentTraversal.hpp" alt="" coords="36,83,342,112"/><area shape="rect" id="node17" href="DOMXPathEvaluator_8hpp.html" title="xercesc/dom/DOMXPathEvaluator.hpp" alt="" coords="461,160,738,189"/><area shape="rect" id="node14" href="DOMNodeFilter_8hpp.html" title="xercesc/dom/DOMNodeFilter.hpp" alt="" coords="52,160,294,189"/><area shape="rect" id="node20" href="DOMXPathResult_8hpp.html" title="xercesc/dom/DOMXPathResult.hpp" alt="" coords="470,237,729,267"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMDocument_8hpp__dep__incl.png" border="0" usemap="#DOMDocument_8hppdep_map" alt=""/></div>
<map name="DOMDocument_8hppdep_map" id="DOMDocument_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="41,83,124,112"/></map>
</div>
<p><a href="DOMDocument_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocument.html">xercesc::DOMDocument</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMDocument.html" title="The DOMDocument interface represents the entire XML document.">DOMDocument</a></code> interface represents the entire XML document. <a href="classxercesc_1_1DOMDocument.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMDocument_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocument.html">xercesc::DOMDocument</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMDocument.html" title="The DOMDocument interface represents the entire XML document.">DOMDocument</a></code> interface represents the entire XML document. <a href="classxercesc_1_1DOMDocument.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocument_8hpp.html#a912d508cd7f6759701d3e88eecd0d6ea">XERCESC_INCLUDE_GUARD_DOMDOCUMENT_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="a912d508cd7f6759701d3e88eecd0d6ea"></a><!-- doxytag: member="DOMDocument.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENT_HPP" ref="a912d508cd7f6759701d3e88eecd0d6ea" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENT_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,3 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="41,83,124,112"/>
</map>

View file

@ -0,0 +1 @@
55963f62c2e72d8bff77b65c06ed8589

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,2 +1,8 @@
<map id="G" name="G">
<area shape="rect" id="node5" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="68,237,278,267"/>
<area shape="rect" id="node8" href="$DOMDocumentRange_8hpp.html" title="xercesc/dom/DOMDocumentRange.hpp" alt="" coords="366,83,657,112"/>
<area shape="rect" id="node11" href="$DOMDocumentTraversal_8hpp.html" title="xercesc/dom/DOMDocumentTraversal.hpp" alt="" coords="36,83,342,112"/>
<area shape="rect" id="node17" href="$DOMXPathEvaluator_8hpp.html" title="xercesc/dom/DOMXPathEvaluator.hpp" alt="" coords="461,160,738,189"/>
<area shape="rect" id="node14" href="$DOMNodeFilter_8hpp.html" title="xercesc/dom/DOMNodeFilter.hpp" alt="" coords="52,160,294,189"/>
<area shape="rect" id="node20" href="$DOMXPathResult_8hpp.html" title="xercesc/dom/DOMXPathResult.hpp" alt="" coords="470,237,729,267"/>
</map>

View file

@ -1 +1 @@
aba3634ed6441d31c7209a02e8ec41b6
c0b5f9bd5b7192a34355cb4d8f8fbfe9

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 49 KiB

View file

@ -5,28 +5,24 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>DOMDocument.hpp</h1> </div>
</div>
<div class="contents">
<a href="DOMDocument_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<h1>DOMDocument.hpp</h1><a href="DOMDocument_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
<a name="l00003"></a>00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
<a name="l00004"></a>00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@ -44,17 +40,17 @@
<a name="l00016"></a>00016 <span class="comment"> */</span>
<a name="l00017"></a>00017
<a name="l00018"></a>00018 <span class="comment">/*</span>
<a name="l00019"></a>00019 <span class="comment"> * $Id: DOMDocument.hpp 672232 2008-06-27 10:16:38Z borisk $</span>
<a name="l00019"></a>00019 <span class="comment"> * $Id: DOMDocument.hpp 932887 2010-04-11 13:04:59Z borisk $</span>
<a name="l00020"></a>00020 <span class="comment">*/</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMDOCUMENT_HPP)</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENT_HPP</span>
<a name="l00023"></a><a class="code" href="DOMDocument_8hpp.html#a912d508cd7f6759701d3e88eecd0d6ea">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENT_HPP</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;xercesc/dom/DOMNode.hpp&gt;</span>
<a name="l00027"></a>00027 <span class="preprocessor">#include &lt;xercesc/dom/DOMDocumentRange.hpp&gt;</span>
<a name="l00028"></a>00028 <span class="preprocessor">#include &lt;xercesc/dom/DOMDocumentTraversal.hpp&gt;</span>
<a name="l00029"></a>00029 <span class="preprocessor">#include &lt;xercesc/dom/DOMXPathEvaluator.hpp&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNode_8hpp.html">xercesc/dom/DOMNode.hpp</a>&gt;</span>
<a name="l00027"></a>00027 <span class="preprocessor">#include &lt;<a class="code" href="DOMDocumentRange_8hpp.html">xercesc/dom/DOMDocumentRange.hpp</a>&gt;</span>
<a name="l00028"></a>00028 <span class="preprocessor">#include &lt;<a class="code" href="DOMDocumentTraversal_8hpp.html">xercesc/dom/DOMDocumentTraversal.hpp</a>&gt;</span>
<a name="l00029"></a>00029 <span class="preprocessor">#include &lt;<a class="code" href="DOMXPathEvaluator_8hpp.html">xercesc/dom/DOMXPathEvaluator.hpp</a>&gt;</span>
<a name="l00030"></a>00030
<a name="l00031"></a>00031 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00032"></a>00032
@ -78,8 +74,8 @@
<a name="l00050"></a>00050
<a name="l00064"></a><a class="code" href="classxercesc_1_1DOMDocument.html">00064</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMDocument.html" title="The DOMDocument interface represents the entire XML document.">DOMDocument</a>: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMDocumentRange.html">DOMDocumentRange</a>,
<a name="l00065"></a>00065 <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMXPathEvaluator.html" title="The evaluation of XPath expressions is provided by DOMXPathEvaluator.">DOMXPathEvaluator</a>,
<a name="l00066"></a>00066 <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers to traverse a n...">DOMDocumentTraversal</a>,
<a name="l00067"></a>00067 <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a> {
<a name="l00066"></a>00066 <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers...">DOMDocumentTraversal</a>,
<a name="l00067"></a>00067 <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a> {
<a name="l00068"></a>00068
<a name="l00069"></a>00069
<a name="l00070"></a>00070 <span class="keyword">protected</span>:
@ -104,47 +100,47 @@
<a name="l00102"></a>00102 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00103"></a>00103 <span class="comment">// Virtual DOMDocument interface</span>
<a name="l00104"></a>00104 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00127"></a>00127 <span class="comment"></span> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when traversing a docume...">DOMElement</a> *createElement(<span class="keyword">const</span> XMLCh *tagName) = 0;
<a name="l00127"></a>00127 <span class="comment"></span> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when...">DOMElement</a> *createElement(<span class="keyword">const</span> XMLCh *tagName) = 0;
<a name="l00128"></a>00128
<a name="l00134"></a>00134 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument object...">DOMDocumentFragment</a> *createDocumentFragment() = 0;
<a name="l00134"></a>00134 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMDocumentFragment.html" title="DOMDocumentFragment is a &amp;quot;lightweight&amp;quot; or &amp;quot;minimal&amp;quot; DOMDocument...">DOMDocumentFragment</a> *createDocumentFragment() = 0;
<a name="l00135"></a>00135
<a name="l00142"></a>00142 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMText.html" title="The DOMText interface inherits from DOMCharacterData and represents the textual content (termed chara...">DOMText</a> *createTextNode(<span class="keyword">const</span> XMLCh *data) = 0;
<a name="l00142"></a>00142 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMText.html" title="The DOMText interface inherits from DOMCharacterData and represents the textual content...">DOMText</a> *createTextNode(<span class="keyword">const</span> XMLCh *data) = 0;
<a name="l00143"></a>00143
<a name="l00150"></a>00150 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting &amp;#39; &amp;lt;!--&amp;#39; and ending &amp;#39;--&amp;gt;&amp;#39;.">DOMComment</a> *createComment(<span class="keyword">const</span> XMLCh *data) = 0;
<a name="l00150"></a>00150 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMComment.html" title="This interface inherits from CharacterData and represents the content of a comment...">DOMComment</a> *createComment(<span class="keyword">const</span> XMLCh *data) = 0;
<a name="l00151"></a>00151
<a name="l00159"></a>00159 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would otherwise be regard...">DOMCDATASection</a> *createCDATASection(<span class="keyword">const</span> XMLCh *data) = 0;
<a name="l00159"></a>00159 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMCDATASection.html" title="CDATA sections are used to escape blocks of text containing characters that would...">DOMCDATASection</a> *createCDATASection(<span class="keyword">const</span> XMLCh *data) = 0;
<a name="l00160"></a>00160
<a name="l00172"></a>00172 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMProcessingInstruction.html" title="The DOMProcessingInstruction interface represents a &amp;quot;processing instruction&amp;quot;, used in XML as a way to keep processor-specific information in the text of the document.">DOMProcessingInstruction</a> *createProcessingInstruction(<span class="keyword">const</span> XMLCh *target,
<a name="l00172"></a>00172 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMProcessingInstruction.html" title="The DOMProcessingInstruction interface represents a &amp;quot;processing instruction&amp;quot;...">DOMProcessingInstruction</a> *createProcessingInstruction(<span class="keyword">const</span> XMLCh *target,
<a name="l00173"></a>00173 <span class="keyword">const</span> XMLCh *data) = 0;
<a name="l00174"></a>00174
<a name="l00175"></a>00175
<a name="l00192"></a>00192 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a> *createAttribute(<span class="keyword">const</span> XMLCh *name) = 0;
<a name="l00193"></a>00193
<a name="l00194"></a>00194
<a name="l00212"></a>00212 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMEntityReference.html" title="DOMEntityReference objects may be inserted into the structure model when an entity reference is in th...">DOMEntityReference</a> *createEntityReference(<span class="keyword">const</span> XMLCh *name) = 0;
<a name="l00212"></a>00212 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMEntityReference.html" title="DOMEntityReference objects may be inserted into the structure model when an entity...">DOMEntityReference</a> *createEntityReference(<span class="keyword">const</span> XMLCh *name) = 0;
<a name="l00213"></a>00213
<a name="l00225"></a>00225 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object...">DOMDocumentType</a> *getDoctype() <span class="keyword">const</span> = 0;
<a name="l00225"></a>00225 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType...">DOMDocumentType</a> *getDoctype() <span class="keyword">const</span> = 0;
<a name="l00226"></a>00226
<a name="l00232"></a>00232 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMImplementation.html" title="The DOMImplementation interface provides a number of methods for performing operations that are indep...">DOMImplementation</a> *getImplementation() <span class="keyword">const</span> = 0;
<a name="l00232"></a>00232 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMImplementation.html" title="The DOMImplementation interface provides a number of methods for performing operations...">DOMImplementation</a> *getImplementation() <span class="keyword">const</span> = 0;
<a name="l00233"></a>00233
<a name="l00239"></a>00239 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when traversing a docume...">DOMElement</a> *getDocumentElement() <span class="keyword">const</span> = 0;
<a name="l00239"></a>00239 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when...">DOMElement</a> *getDocumentElement() <span class="keyword">const</span> = 0;
<a name="l00240"></a>00240
<a name="l00255"></a>00255 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNodeList.html" title="The DOMNodeList interface provides the abstraction of an ordered collection of nodes.">DOMNodeList</a> *getElementsByTagName(<span class="keyword">const</span> XMLCh *tagname) <span class="keyword">const</span> = 0;
<a name="l00255"></a>00255 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNodeList.html" title="The DOMNodeList interface provides the abstraction of an ordered collection of nodes...">DOMNodeList</a> *getElementsByTagName(<span class="keyword">const</span> XMLCh *tagname) <span class="keyword">const</span> = 0;
<a name="l00256"></a>00256
<a name="l00258"></a>00258
<a name="l00261"></a>00261
<a name="l00360"></a>00360 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a> *importNode(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a> *importedNode, <span class="keywordtype">bool</span> deep) = 0;
<a name="l00360"></a>00360 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a> *importNode(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a> *importedNode, <span class="keywordtype">bool</span> deep) = 0;
<a name="l00361"></a>00361
<a name="l00417"></a>00417 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when traversing a docume...">DOMElement</a> *createElementNS(<span class="keyword">const</span> XMLCh *namespaceURI,
<a name="l00417"></a>00417 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when...">DOMElement</a> *createElementNS(<span class="keyword">const</span> XMLCh *namespaceURI,
<a name="l00418"></a>00418 <span class="keyword">const</span> XMLCh *qualifiedName) = 0;
<a name="l00419"></a>00419
<a name="l00482"></a>00482 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a> *createAttributeNS(<span class="keyword">const</span> XMLCh *namespaceURI,
<a name="l00483"></a>00483 <span class="keyword">const</span> XMLCh *qualifiedName) = 0;
<a name="l00484"></a>00484
<a name="l00497"></a>00497 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNodeList.html" title="The DOMNodeList interface provides the abstraction of an ordered collection of nodes.">DOMNodeList</a> *getElementsByTagNameNS(<span class="keyword">const</span> XMLCh *namespaceURI,
<a name="l00497"></a>00497 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNodeList.html" title="The DOMNodeList interface provides the abstraction of an ordered collection of nodes...">DOMNodeList</a> *getElementsByTagNameNS(<span class="keyword">const</span> XMLCh *namespaceURI,
<a name="l00498"></a>00498 <span class="keyword">const</span> XMLCh *localName) <span class="keyword">const</span> = 0;
<a name="l00499"></a>00499
<a name="l00513"></a>00513 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when traversing a docume...">DOMElement</a> * getElementById(<span class="keyword">const</span> XMLCh *elementId) <span class="keyword">const</span> = 0;
<a name="l00513"></a>00513 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when...">DOMElement</a> * getElementById(<span class="keyword">const</span> XMLCh *elementId) <span class="keyword">const</span> = 0;
<a name="l00515"></a>00515
<a name="l00518"></a>00518
<a name="l00525"></a>00525 <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh* getInputEncoding() <span class="keyword">const</span> = 0;
@ -165,28 +161,28 @@
<a name="l00600"></a>00600 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> getStrictErrorChecking() <span class="keyword">const</span> = 0;
<a name="l00611"></a>00611 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setStrictErrorChecking(<span class="keywordtype">bool</span> strictErrorChecking) = 0;
<a name="l00612"></a>00612
<a name="l00657"></a>00657 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a>* renameNode(<a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a>* n, <span class="keyword">const</span> XMLCh* namespaceURI, <span class="keyword">const</span> XMLCh* qualifiedName) = 0;
<a name="l00657"></a>00657 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a>* renameNode(<a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a>* n, <span class="keyword">const</span> XMLCh* namespaceURI, <span class="keyword">const</span> XMLCh* qualifiedName) = 0;
<a name="l00658"></a>00658
<a name="l00659"></a>00659
<a name="l00719"></a>00719 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a>* adoptNode(<a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model.">DOMNode</a>* source) = 0;
<a name="l00719"></a>00719 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a>* adoptNode(<a class="code" href="classxercesc_1_1DOMNode.html" title="The DOMNode interface is the primary datatype for the entire Document Object Model...">DOMNode</a>* source) = 0;
<a name="l00720"></a>00720
<a name="l00741"></a>00741 <span class="keyword">virtual</span> <span class="keywordtype">void</span> normalizeDocument() = 0;
<a name="l00742"></a>00742
<a name="l00743"></a>00743
<a name="l00751"></a>00751 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains a table of re...">DOMConfiguration</a>* getDOMConfig() <span class="keyword">const</span> = 0;
<a name="l00751"></a>00751 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMConfiguration.html" title="The DOMConfiguration interface represents the configuration of a document and maintains...">DOMConfiguration</a>* getDOMConfig() <span class="keyword">const</span> = 0;
<a name="l00752"></a>00752
<a name="l00754"></a>00754
<a name="l00755"></a>00755 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00756"></a>00756 <span class="comment">// Non-standard extension</span>
<a name="l00757"></a>00757 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00767"></a>00767 <span class="comment"></span> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMEntity.html" title="This interface represents an entity, either parsed or unparsed, in an XML document.">DOMEntity</a> *createEntity(<span class="keyword">const</span> XMLCh *name) = 0;
<a name="l00767"></a>00767 <span class="comment"></span> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMEntity.html" title="This interface represents an entity, either parsed or unparsed, in an XML document...">DOMEntity</a> *createEntity(<span class="keyword">const</span> XMLCh *name) = 0;
<a name="l00768"></a>00768
<a name="l00777"></a>00777 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object...">DOMDocumentType</a> *createDocumentType(<span class="keyword">const</span> XMLCh *name) = 0;
<a name="l00777"></a>00777 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType...">DOMDocumentType</a> *createDocumentType(<span class="keyword">const</span> XMLCh *name) = 0;
<a name="l00778"></a>00778
<a name="l00779"></a>00779 <span class="comment">/***</span>
<a name="l00780"></a>00780 <span class="comment"> * Provide default implementation to maintain source code compatibility</span>
<a name="l00781"></a>00781 <span class="comment"> ***/</span>
<a name="l00782"></a><a class="code" href="classxercesc_1_1DOMDocument.html#afba31cc58c4334720a19c3ff845aaa5a">00782</a> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object...">DOMDocumentType</a>* createDocumentType(<span class="keyword">const</span> XMLCh *qName,
<a name="l00782"></a><a class="code" href="classxercesc_1_1DOMDocument.html#afba31cc58c4334720a19c3ff845aaa5a">00782</a> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMDocumentType.html" title="Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType...">DOMDocumentType</a>* createDocumentType(<span class="keyword">const</span> XMLCh *qName,
<a name="l00783"></a>00783 <span class="keyword">const</span> XMLCh*, <span class="comment">//publicId,</span>
<a name="l00784"></a>00784 <span class="keyword">const</span> XMLCh* <span class="comment">//systemId</span>
<a name="l00785"></a>00785 )
@ -196,7 +192,7 @@
<a name="l00789"></a>00789
<a name="l00798"></a>00798 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNotation.html" title="This interface represents a notation declared in the DTD.">DOMNotation</a> *createNotation(<span class="keyword">const</span> XMLCh *name) = 0;
<a name="l00799"></a>00799
<a name="l00809"></a>00809 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when traversing a docume...">DOMElement</a> *createElementNS(<span class="keyword">const</span> XMLCh *namespaceURI,
<a name="l00809"></a>00809 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when...">DOMElement</a> *createElementNS(<span class="keyword">const</span> XMLCh *namespaceURI,
<a name="l00810"></a>00810 <span class="keyword">const</span> XMLCh *qualifiedName,
<a name="l00811"></a>00811 <span class="keyword">const</span> XMLFileLoc lineNum,
<a name="l00812"></a>00812 <span class="keyword">const</span> XMLFileLoc columnNum) = 0;
@ -207,9 +203,8 @@
<a name="l00818"></a>00818
<a name="l00819"></a>00819 <span class="preprocessor">#endif</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -5,58 +5,73 @@
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.7.3 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File&#160;List</span></a></li>
<li><a href="globals.html"><span>File&#160;Members</span></a></li>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<h1>DOMElement.hpp File Reference</h1> </div>
</div>
<div class="contents">
<div class="textblock"><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;xercesc/dom/DOMNode.hpp&gt;</code><br/>
</div><div class="textblock"><div class="dynheader">
<h1>DOMElement.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br/>
<code>#include &lt;<a class="el" href="DOMNode_8hpp_source.html">xercesc/dom/DOMNode.hpp</a>&gt;</code><br/>
<div class="dynheader">
Include dependency graph for DOMElement.hpp:</div>
<div class="dyncontent">
<div class="center"><img src="DOMElement_8hpp__incl.png" border="0" usemap="#DOMElement_8hpp" alt=""/></div>
<map name="DOMElement_8hpp" id="DOMElement_8hpp">
</map>
<div class="dynsection">
<div class="center"><img src="DOMElement_8hpp__incl.png" border="0" usemap="#DOMElement_8hpp_map" alt=""/></div>
<map name="DOMElement_8hpp_map" id="DOMElement_8hpp">
<area shape="rect" id="node5" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="77,83,288,112"/></map>
</div>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<div class="center"><img src="DOMElement_8hpp__dep__incl.png" border="0" usemap="#DOMElement_8hppdep_map" alt=""/></div>
<map name="DOMElement_8hppdep_map" id="DOMElement_8hppdep">
<area shape="rect" id="node3" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="5,83,88,112"/><area shape="rect" id="node5" href="StDOMNode_8hpp.html" title="StDOMNode.hpp" alt="" coords="112,83,245,112"/></map>
</div>
<p><a href="DOMElement_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMElement.html">xercesc::DOMElement</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">By far the vast majority of objects (apart from text) that authors encounter when traversing a document are <code><a class="el" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when traversing a docume...">DOMElement</a></code> nodes. <a href="classxercesc_1_1DOMElement.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<p><a href="DOMElement_8hpp_source.html">Go to the source code of this file.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMElement.html">xercesc::DOMElement</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">By far the vast majority of objects (apart from text) that authors encounter when traversing a document are <code><a class="el" href="classxercesc_1_1DOMElement.html" title="By far the vast majority of objects (apart from text) that authors encounter when...">DOMElement</a></code> nodes. <a href="classxercesc_1_1DOMElement.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
<p><tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><p>This class holds the list of registered DOMImplementations. </p>
<br/></td></tr>
</p>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMElement_8hpp.html#ad44a59778753f9a5c11ac979cca8c7cd">XERCESC_INCLUDE_GUARD_DOMELEMENT_HPP</a></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="ad44a59778753f9a5c11ac979cca8c7cd"></a><!-- doxytag: member="DOMElement.hpp::XERCESC_INCLUDE_GUARD_DOMELEMENT_HPP" ref="ad44a59778753f9a5c11ac979cca8c7cd" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMELEMENT_HPP</td>
</tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Oct 31 2011 19:08:37 for XQilla DOM Level 3 API by&#160;
<div class="memdoc">
</div>
</div>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 18 May 2015 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>

View file

@ -0,0 +1,4 @@
<map id="G" name="G">
<area shape="rect" id="node3" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="5,83,88,112"/>
<area shape="rect" id="node5" href="$StDOMNode_8hpp.html" title="StDOMNode.hpp" alt="" coords="112,83,245,112"/>
</map>

View file

@ -0,0 +1 @@
7fa6c8406902d7470fde6e891ed392bc

Some files were not shown because too many files have changed in this diff Show more