This commit is contained in:
King_DuckZ 2020-02-17 22:19:08 +01:00
parent 4bc0157dcd
commit 1613a190f0
2427 changed files with 125503 additions and 133080 deletions

View file

@ -1,6 +1,37 @@
XQilla: an XQuery and XPath 2.0 library and command line interpreter.
version 2.2.0 (2008.12.03):
version 2.2.2 (2009.07.02):
* Fixed XQillaDocumentImpl::cloneNode() to return an instance of
XQillaDocumentImpl.
* Fixed XPath 2.0 so that it doesn't recognize entities in
string literals.
* Fixed a bug in the constant folding identity transforms for
arithmetic expressions.
* Fixed a bug in the undefined context item check.
* Fixed the transform expression to copy document nodes rather than
dissolving them.
* Fixed a bug in the static typing of external functions.
* Fixed a bug in fn:matches()with a zero-length string as the first
argument.
* Fixed a couple of bugs in the debug API, and made it report exit() and
end() events correctly.
* Fixed variable inlining so that variables aren't inlined into loops.
* Fixed a segfault when parsing a document from a memory buffer.
* Fixed a bug in XQC_Implementation->parse_document_file() that
caused parsing to always fail.
* Workaround a bug in Xerces-C that can cause corrupted memory when
deleting a mutex.
* Fixed a bug related to unsigned int/XMLSize_t type difference between
Xerces-C 2.8 and 3.0.
* Fixed alignment on sparc architectures that could cause a SIGBUS
crash.
* Fixed a Windows memory bug involving the URI used in resolving a
document or collection.
* Fixed Windows compile warnings related to Xerces-C types.
* Updated libtool version to 2.2.6.
* Fixed some compiler issues related to the xlC compiler.
version 2.2.0 (2009.01.05):
* Added a debugging API, and a command line debugger invoked by passing
a "-d" flag to the command line tool.
* Added a partial implementation of XSLT 2.0. This should currently be

View file

@ -16,7 +16,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 5:0:0 -no-undefined
libxqilla_la_LDFLAGS = -version-info 5:2:0 -no-undefined
libxqilla_la_SOURCES = \
src/framework/ReferenceCounted.cpp \
@ -546,8 +546,6 @@ Win32Projects/VC8/xqc-basic.vcproj \
Win32Projects/VC8/xqc-context-item.vcproj \
Win32Projects/VC8/xqilla.vcproj \
Win32Projects/VC8/xqilla_cmd.vcproj \
Win32Projects/VC8/xqilla_cmd_static.vcproj \
Win32Projects/VC8/xqilla_static.vcproj \
Win32Projects/VC8/xqtsRunner.vcproj \
Win32Projects/VC8/XQilla.sln \
Win32Projects/VC6/simple-context-item.dsp \
@ -573,8 +571,6 @@ Win32Projects/VC7.1/xqc-context-item.vcproj \
Win32Projects/VC7.1/xqilla.vcproj \
Win32Projects/VC7.1/xqilla_cmd.vcproj \
Win32Projects/VC7.1/XQilla.sln \
Win32Projects/VC7.1/xqilla_cmd_static.vcproj \
Win32Projects/VC7.1/xqilla_static.vcproj \
Win32Projects/VC7.1/xqtsRunner.vcproj \
tests/xqts/xqts_testsuite/errors.xml \
tests/xqts/xqts_testsuite/update_errors.xml \

View file

@ -456,7 +456,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 5:0:0 -no-undefined
libxqilla_la_LDFLAGS = -version-info 5:2:0 -no-undefined
libxqilla_la_SOURCES = \
src/framework/ReferenceCounted.cpp \
src/framework/BaseMemoryManager.cpp \
@ -985,8 +985,6 @@ Win32Projects/VC8/xqc-basic.vcproj \
Win32Projects/VC8/xqc-context-item.vcproj \
Win32Projects/VC8/xqilla.vcproj \
Win32Projects/VC8/xqilla_cmd.vcproj \
Win32Projects/VC8/xqilla_cmd_static.vcproj \
Win32Projects/VC8/xqilla_static.vcproj \
Win32Projects/VC8/xqtsRunner.vcproj \
Win32Projects/VC8/XQilla.sln \
Win32Projects/VC6/simple-context-item.dsp \
@ -1012,8 +1010,6 @@ Win32Projects/VC7.1/xqc-context-item.vcproj \
Win32Projects/VC7.1/xqilla.vcproj \
Win32Projects/VC7.1/xqilla_cmd.vcproj \
Win32Projects/VC7.1/XQilla.sln \
Win32Projects/VC7.1/xqilla_cmd_static.vcproj \
Win32Projects/VC7.1/xqilla_static.vcproj \
Win32Projects/VC7.1/xqtsRunner.vcproj \
tests/xqts/xqts_testsuite/errors.xml \
tests/xqts/xqts_testsuite/update_errors.xml \

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.0
1. Download a source distribution of Xerces-C 3.0.1
2. Build Xerces-C
cd xerces-c-3.0.0/
cd xerces-c-3.0.1/
./configure
make
4. Build XQilla
cd xqilla/
./configure --with-xerces=`pwd`/../xerces-c-3.0.0/
./configure --with-xerces=`pwd`/../xerces-c-3.0.1/
make

View file

@ -1029,22 +1029,10 @@ SOURCE=..\..\src\fastxdm\FastXDMConfiguration.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMConfiguration.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMDocument.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMDocument.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMDocument.hpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMDocument.hpp
# End Source File
# Begin Source File
@ -1053,22 +1041,10 @@ SOURCE=..\..\src\fastxdm\FastXDMNodeImpl.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMNodeImpl.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMNodeImpl.hpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMNodeImpl.hpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMSequenceBuilder.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMSequenceBuilder.cpp
# End Source File
# Begin Source File
@ -1077,22 +1053,10 @@ SOURCE=..\..\src\fastxdm\FastXDMSequenceBuilder.hpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMSequenceBuilder.hpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMUpdateFactory.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMUpdateFactory.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMUpdateFactory.hpp
# End Source File
# Begin Source File
SOURCE=..\..\src\fastxdm\FastXDMUpdateFactory.hpp
# End Source File
# Begin Source File
@ -1529,10 +1493,6 @@ SOURCE=..\..\src\functions\FunctionLast.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\functions\FunctionLast.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\functions\FunctionLocalname.cpp
# End Source File
# Begin Source File
@ -3353,10 +3313,6 @@ SOURCE=..\..\src\update\UInsertAsLast.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\update\UInsertAsLast.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\update\UInsertBefore.cpp
# End Source File
# Begin Source File

View file

@ -3,20 +3,11 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla", "XQilla.vcproj", "
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla_static", "xqilla_static.vcproj", "{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla_cmd", "xqilla_cmd.vcproj", "{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}") = "xqilla_cmd_static", "xqilla_cmd_static.vcproj", "{411BCA29-C615-4E4F-B6F0-07580823EC0B}"
ProjectSection(ProjectDependencies) = postProject
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1} = {B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple-basic", "simple-basic.vcproj", "{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
@ -60,6 +51,8 @@ Global
Release = Release
Release AMD64 = Release AMD64
Release IA64 = Release IA64
Static Debug = Static Debug
Static Release = Static Release
EndGlobalSection
GlobalSection(ProjectConfiguration) = postSolution
{63E85107-41E0-4FC7-8083-40E85861B426}.Debug.ActiveCfg = Debug|Win32
@ -74,12 +67,10 @@ Global
{63E85107-41E0-4FC7-8083-40E85861B426}.Release AMD64.Build.0 = Release AMD64|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Release IA64.ActiveCfg = Release IA64|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Release IA64.Build.0 = Release IA64|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Debug.ActiveCfg = Debug|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Debug AMD64.ActiveCfg = Debug AMD64|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Debug IA64.ActiveCfg = Debug IA64|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Release.ActiveCfg = Release|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Release AMD64.ActiveCfg = Release AMD64|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Release IA64.ActiveCfg = Release IA64|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug.ActiveCfg = Static Debug|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug.Build.0 = Static Debug|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Release.ActiveCfg = Static Release|Win32
{63E85107-41E0-4FC7-8083-40E85861B426}.Static Release.Build.0 = Static Release|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug.ActiveCfg = Debug|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug.Build.0 = Debug|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug AMD64.ActiveCfg = Debug AMD64|Win32
@ -92,12 +83,10 @@ Global
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release AMD64.Build.0 = Release AMD64|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release IA64.ActiveCfg = Release IA64|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release IA64.Build.0 = Release IA64|Win32
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Debug.ActiveCfg = Debug|Win32
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Debug AMD64.ActiveCfg = Debug|Win32
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Debug IA64.ActiveCfg = Debug|Win32
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Release.ActiveCfg = Release|Win32
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Release AMD64.ActiveCfg = Release|Win32
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Release IA64.ActiveCfg = Release|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug.ActiveCfg = Static Debug|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug.Build.0 = Static Debug|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release.ActiveCfg = Static Release|Win32
{44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release.Build.0 = Static Release|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug.ActiveCfg = Debug|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug.Build.0 = Debug|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug AMD64.ActiveCfg = Debug|Win32
@ -106,6 +95,8 @@ Global
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release.Build.0 = Release|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release AMD64.ActiveCfg = Release|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release IA64.ActiveCfg = Release|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug.ActiveCfg = Debug|Win32
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release.ActiveCfg = Release|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug.ActiveCfg = Debug|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug.Build.0 = Debug|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug AMD64.ActiveCfg = Debug|Win32
@ -114,6 +105,8 @@ Global
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release.Build.0 = Release|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release AMD64.ActiveCfg = Release|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release IA64.ActiveCfg = Release|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug.ActiveCfg = Debug|Win32
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release.ActiveCfg = Release|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Debug.ActiveCfg = Debug|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Debug.Build.0 = Debug|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Debug AMD64.ActiveCfg = Debug|Win32
@ -122,6 +115,8 @@ Global
{6672DE96-EA92-44A2-900E-6868A86FB044}.Release.Build.0 = Release|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Release AMD64.ActiveCfg = Release|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Release IA64.ActiveCfg = Release|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug.ActiveCfg = Debug|Win32
{6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release.ActiveCfg = Release|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug.ActiveCfg = Debug|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug.Build.0 = Debug|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug AMD64.ActiveCfg = Debug|Win32
@ -130,6 +125,8 @@ Global
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Release.Build.0 = Release|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Release AMD64.ActiveCfg = Release|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Release IA64.ActiveCfg = Release|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug.ActiveCfg = Debug|Win32
{E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release.ActiveCfg = Release|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug.ActiveCfg = Debug|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug.Build.0 = Debug|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug AMD64.ActiveCfg = Debug|Win32
@ -138,18 +135,22 @@ Global
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release.Build.0 = Release|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release AMD64.ActiveCfg = Release|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release IA64.ActiveCfg = Release|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug.ActiveCfg = Debug|Win32
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release.ActiveCfg = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug.ActiveCfg = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug.Build.0 = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug AMD64.ActiveCfg = Debug AMD64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug AMD64.Build.0 = Debug AMD64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug IA64.ActiveCfg = Debug IA64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug IA64.Build.0 = Debug IA64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug AMD64.ActiveCfg = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug AMD64.Build.0 = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug IA64.ActiveCfg = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug IA64.Build.0 = Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release.ActiveCfg = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release.Build.0 = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release AMD64.ActiveCfg = Release AMD64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release AMD64.Build.0 = Release AMD64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release IA64.ActiveCfg = Release IA64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release IA64.Build.0 = Release IA64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release AMD64.ActiveCfg = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release AMD64.Build.0 = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release IA64.ActiveCfg = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release IA64.Build.0 = Release|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug.ActiveCfg = Static Debug|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release.ActiveCfg = Release|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Debug.ActiveCfg = Debug|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Debug.Build.0 = Debug|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Debug AMD64.ActiveCfg = Debug|Win32
@ -158,6 +159,8 @@ Global
{619264FA-3730-43C4-A903-0EAA453527AC}.Release.Build.0 = Release|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Release AMD64.ActiveCfg = Release|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Release IA64.ActiveCfg = Release|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug.ActiveCfg = Debug|Win32
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Release.ActiveCfg = Release|Win32
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
EndGlobalSection

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-basic" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-context-item" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-resolver" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-basic" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-context-item" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xmarkRunner" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-basic" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-context-item" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,10 +12,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;XQILLA_APIS;_USRDLL" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3d.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22d.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22d.dll" ProgramDatabaseFile="$(OutDir)/xqilla22d.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3d.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22d.lib" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla22d.dll" ProgramDatabaseFile="$(OutDir)/xqilla22d.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Debug|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Static Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" AdditionalOptions="/machine:x86" OutputFile="$(OutDir)/xqilla22sd.lib"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="2" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -23,10 +32,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;XQILLA_APIS;_USRDLL" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22.dll" ProgramDatabaseFile="$(OutDir)/xqilla22.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22.dll" ProgramDatabaseFile="$(OutDir)/xqilla22.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Static Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" AdditionalOptions="/machine:x86" OutputFile="$(OutDir)/xqilla22s.lib"/></Configuration>
</Configurations>
<References/>
<Files>
@ -495,17 +513,6 @@
<File RelativePath="..\..\src\ast\XQTypeswitch.cpp"/>
<File RelativePath="..\..\src\ast\XQValidate.cpp"/>
<File RelativePath="..\..\src\ast\XQVariable.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMConfiguration.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMDocument.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMDocument.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMNodeImpl.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMNodeImpl.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMSequenceBuilder.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMSequenceBuilder.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMUpdateFactory.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMUpdateFactory.hpp"/>
<File RelativePath="..\..\src\functions\FunctionLast.cpp"/>
<File RelativePath="..\..\src\update\UInsertAsLast.cpp"/>
</Filter>
<Filter Name="axis" Filter="">
<File RelativePath="..\..\src\axis\NodeTest.cpp"/>

View file

@ -12,10 +12,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Debug|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Static Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22sd.lib xerces-c_static_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -23,10 +32,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Static Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22s.lib xerces-c_static_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
</Configurations>
<References/>
<Files>

View file

@ -1,32 +0,0 @@
<VisualStudioProject Name="xqilla_cmd_static" ProjectGUID="{411BCA29-C615-4E4F-B6F0-07580823EC0B}" ProjectType="Visual C++" Version="7.10">
<Platforms>
<Platform Name="Win32"/>
<Platform Name="x64"/>
<Platform Name="IA64"/>
</Platforms>
<Configurations>
<Configuration Name="Debug|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd_static" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Debug_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22sd.lib xerces-c_static_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/Static$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/Static$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd_static" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22s.lib xerces-c_static_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/Static$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/Static$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\..\src\samples\xqilla\xqilla-commandline.cpp"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -1,993 +0,0 @@
<VisualStudioProject Name="xqilla_static" ProjectGUID="{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}" ProjectType="Visual C++" Version="7.10">
<Platforms>
<Platform Name="Win32"/>
<Platform Name="x64"/>
<Platform Name="IA64"/>
</Platforms>
<Configurations>
<Configuration Name="Debug|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla_static" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Debug_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_LIB;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/xqilla22sd.lib"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla_static" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_LIB;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/xqilla22s.lib"/></Configuration>
</Configurations>
<References/>
<Files>
<Filter Name="include" Filter="">
<File RelativePath="..\..\include\xqc.h"/>
<File RelativePath="..\..\include\xqilla\xqilla-dom3.hpp"/>
<File RelativePath="..\..\include\xqilla\xqilla-simple.hpp"/>
<File RelativePath="..\..\include\xqilla\xqilla-xqc.h"/>
<File RelativePath="..\..\include\xqilla\ast\LocationInfo.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQCastableAs.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQCastAs.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQContextItem.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQCopy.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQCopyOf.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQFunction.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\ASTNode.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQIf.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\ASTNodeImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQInstanceOf.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQInlineFunction.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQLiteral.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQNav.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQOperator.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQSequence.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQStep.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQTreatAs.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQVariable.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\StaticAnalysis.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\StaticType.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\ConstantFoldingFunction.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\NumericFunction.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQDOMConstructor.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQDocumentConstructor.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQElementConstructor.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQAttributeConstructor.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQNamespaceConstructor.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQPIConstructor.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQCommentConstructor.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQTextConstructor.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQFunctionCall.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQFunctionConversion.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQFunctionDeref.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQFunctionRef.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQGlobalVariable.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQOrderingChange.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQQuantified.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQTypeswitch.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQValidate.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQAtomize.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQEffectiveBooleanValue.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQMap.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQAnalyzeString.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XPath1Compat.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\ConvertFunctionArg.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQDocumentOrder.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQPredicate.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQReturn.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\TupleNode.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\ContextTuple.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\ForTuple.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\LetTuple.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\OrderByTuple.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\WhereTuple.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQNamespaceBinding.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQCallTemplate.hpp"/>
<File RelativePath="..\..\include\xqilla\ast\XQApplyTemplates.hpp"/>
<File RelativePath="..\..\include\xqilla\debug\InteractiveDebugger.hpp"/>
<File RelativePath="..\..\include\xqilla\debug\InputParser.hpp"/>
<File RelativePath="..\..\include\xqilla\debug\DebugListener.hpp"/>
<File RelativePath="..\..\include\xqilla\debug\DebugHookDecorator.hpp"/>
<File RelativePath="..\..\include\xqilla\debug\ASTDebugHook.hpp"/>
<File RelativePath="..\..\include\xqilla\debug\TupleDebugHook.hpp"/>
<File RelativePath="..\..\include\xqilla\debug\StackFrame.hpp"/>
<File RelativePath="..\..\include\xqilla\events\ContentSequenceFilter.hpp"/>
<File RelativePath="..\..\include\xqilla\events\EventGenerator.hpp"/>
<File RelativePath="..\..\include\xqilla\events\EventHandler.hpp"/>
<File RelativePath="..\..\include\xqilla\events\EventSerializer.hpp"/>
<File RelativePath="..\..\include\xqilla\events\NSFixupFilter.hpp"/>
<File RelativePath="..\..\include\xqilla\events\QueryPathTreeFilter.hpp"/>
<File RelativePath="..\..\include\xqilla\events\SequenceBuilder.hpp"/>
<File RelativePath="..\..\include\xqilla\fastxdm\FastXDMConfiguration.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTContains.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTSelection.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTWords.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTOr.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTAnd.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTMildnot.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTUnaryNot.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\AllMatches.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\Match.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\TokenInfo.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\Tokenizer.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\DefaultTokenizer.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\TokenStore.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\DefaultTokenStore.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTOption.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTOrder.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTRange.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTDistance.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTScope.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTContent.hpp"/>
<File RelativePath="..\..\include\xqilla\fulltext\FTWindow.hpp"/>
<File RelativePath="..\..\include\xqilla\axis\NodeTest.hpp"/>
<File RelativePath="..\..\include\xqilla\axis\SelfAxis.hpp"/>
<File RelativePath="..\..\include\xqilla\context\ContextHelpers.hpp"/>
<File RelativePath="..\..\include\xqilla\context\DynamicContext.hpp"/>
<File RelativePath="..\..\include\xqilla\context\StaticContext.hpp"/>
<File RelativePath="..\..\include\xqilla\context\ItemFactory.hpp"/>
<File RelativePath="..\..\include\xqilla\context\MessageListener.hpp"/>
<File RelativePath="..\..\include\xqilla\context\ModuleResolver.hpp"/>
<File RelativePath="..\..\include\xqilla\context\URIResolver.hpp"/>
<File RelativePath="..\..\include\xqilla\context\VariableStore.hpp"/>
<File RelativePath="..\..\include\xqilla\context\Scope.hpp"/>
<File RelativePath="..\..\include\xqilla\context\VarHashEntry.hpp"/>
<File RelativePath="..\..\include\xqilla\context\VariableTypeStore.hpp"/>
<File RelativePath="..\..\include\xqilla\context\Collation.hpp"/>
<File RelativePath="..\..\include\xqilla\context\ModuleResolver.hpp"/>
<File RelativePath="..\..\include\xqilla\context\ExternalFunctionResolver.hpp"/>
<File RelativePath="..\..\include\xqilla\context\UpdateFactory.hpp"/>
<File RelativePath="..\..\include\xqilla\context\RegexGroupStore.hpp"/>
<File RelativePath="..\..\include\xqilla\context\impl\CollationImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\context\impl\VarHashEntryImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\context\impl\VarStoreImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\context\impl\VariableStoreTemplate.hpp"/>
<File RelativePath="..\..\include\xqilla\context\impl\CodepointCollation.hpp"/>
<File RelativePath="..\..\include\xqilla\context\impl\XQContextImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\context\impl\XQDynamicContextImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\context\impl\ItemFactoryImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\dom-api\impl\XQillaNSResolverImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\dom-api\XPath2Result.hpp"/>
<File RelativePath="..\..\include\xqilla\dom-api\XQillaExpression.hpp"/>
<File RelativePath="..\..\include\xqilla\dom-api\XQillaNSResolver.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\XQillaException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\ContextException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\ASTException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\DynamicErrorException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\FunctionException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\IllegalArgumentException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\ItemException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\NamespaceLookupException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\StaticErrorException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\TypeErrorException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\TypeNotFoundException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\XMLParseException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\XPath2ErrorException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\XPath2TypeCastException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\XPath2TypeMatchException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\XQException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\QueryInterruptedException.hpp"/>
<File RelativePath="..\..\include\xqilla\exceptions\QueryTimeoutException.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\ExternalFunction.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionLookup.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionAnalyzeString.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionAbs.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionAdjustDateTimeToTimezone.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionAdjustDateToTimezone.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionAdjustTimeToTimezone.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionAvg.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionBaseURI.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionBoolean.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionCeiling.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionCodepointEqual.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionCodepointsToString.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionCollection.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionCompare.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionConcat.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionConstructor.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionContains.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionCount.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionCurrentDate.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionCurrentDateTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionCurrentTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionData.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDateTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDayFromDate.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDayFromDateTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDaysFromDuration.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDeepEqual.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDefaultCollation.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDistinctValues.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDocAvailable.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDoc.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDocument.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionDocumentURI.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionEmpty.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionEncodeForUri.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionEndsWith.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionError.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionEscapeHtmlUri.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionExactlyOne.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionExists.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionFalse.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionFloor.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionFunctionArity.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionFunctionName.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionHoursFromDateTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionHoursFromDuration.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionHoursFromTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionId.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionIdref.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionImplicitTimezone.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionIndexOf.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionInScopePrefixes.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionInsertBefore.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionIriToUri.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionLang.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionLast.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionLocalNameFromQName.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionLocalname.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionLowerCase.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionMatches.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionMax.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionMin.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionMinutesFromDateTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionMinutesFromDuration.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionMinutesFromTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionMonthFromDate.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionMonthFromDateTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionMonthsFromDuration.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionName.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionNamespaceURIForPrefix.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionNamespaceURIFromQName.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionNamespaceUri.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionNilled.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionNodeName.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionNormalizeSpace.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionNormalizeUnicode.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionNot.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionNumber.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionOneOrMore.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionParseHTML.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionParseJSON.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionSerializeJSON.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionParseXML.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionPartialApply.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionPosition.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionPrefixFromQName.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionQName.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionRegexGroup.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionRemove.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionReplace.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionResolveQName.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionResolveURI.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionReverse.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionRoot.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionRoundHalfToEven.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionRound.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionSecondsFromDateTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionSecondsFromDuration.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionSecondsFromTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionStartsWith.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionStaticBaseURI.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionString.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionStringJoin.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionStringLength.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionStringToCodepoints.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionSubsequence.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionSubstringAfter.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionSubstringBefore.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionSubstring.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionSum.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionTimezoneFromDate.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionTimezoneFromDateTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionTimezoneFromTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionTokenize.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionTrace.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionTranslate.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionTrue.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionUnordered.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionUnparsedText.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionUpperCase.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionYearFromDate.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionYearFromDateTime.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionYearsFromDuration.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FunctionZeroOrOne.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\FuncFactory.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\XQUserFunction.hpp"/>
<File RelativePath="..\..\include\xqilla\functions\XQillaFunction.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATAnySimpleType.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATAnyURIOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATBase64BinaryOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATBooleanOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATDateOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATDateTimeOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATDecimalOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATDoubleOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATDurationOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATFloatOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATGDayOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATGMonthDayOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATGMonthOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATGYearMonthOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATGYearOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATHexBinaryOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATNotationOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATQNameOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATStringOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATTimeOrDerived.hpp"/>
<File RelativePath="..\..\include\xqilla\items\ATUntypedAtomic.hpp"/>
<File RelativePath="..\..\include\xqilla\items\AnyAtomicType.hpp"/>
<File RelativePath="..\..\include\xqilla\items\DateOrTimeType.hpp"/>
<File RelativePath="..\..\include\xqilla\items\FunctionRef.hpp"/>
<File RelativePath="..\..\include\xqilla\items\Item.hpp"/>
<File RelativePath="..\..\include\xqilla\items\Node.hpp"/>
<File RelativePath="..\..\include\xqilla\items\Numeric.hpp"/>
<File RelativePath="..\..\include\xqilla\items\Timezone.hpp"/>
<File RelativePath="..\..\include\xqilla\items\DatatypeLookup.hpp"/>
<File RelativePath="..\..\include\xqilla\items\DatatypeFactory.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATBooleanOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATDecimalOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATDoubleOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATFloatOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATQNameOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATDurationOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATDateTimeOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATDateOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATTimeOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATGDayOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATGMonthDayOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATGMonthOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATGYearMonthOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\items\impl\ATGYearOrDerivedImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\mapm\m_apm.h"/>
<File RelativePath="..\..\include\xqilla\operators\And.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\ArithmeticOperator.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\ComparisonOperator.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Divide.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Equals.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Except.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\GeneralComp.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\GreaterThanEqual.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\GreaterThan.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\IntegerDivide.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Intersect.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\LessThanEqual.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\LessThan.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Minus.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Mod.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Multiply.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\NodeComparison.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\NotEquals.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\OrderComparison.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Or.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Plus.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Range.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\UnaryMinus.hpp"/>
<File RelativePath="..\..\include\xqilla\operators\Union.hpp"/>
<File RelativePath="..\..\include\xqilla\optimizer\Optimizer.hpp"/>
<File RelativePath="..\..\include\xqilla\optimizer\ASTCopier.hpp"/>
<File RelativePath="..\..\include\xqilla\optimizer\ASTReleaser.hpp"/>
<File RelativePath="..\..\include\xqilla\optimizer\ASTVisitor.hpp"/>
<File RelativePath="..\..\include\xqilla\optimizer\PartialEvaluator.hpp"/>
<File RelativePath="..\..\include\xqilla\optimizer\StaticTyper.hpp"/>
<File RelativePath="..\..\include\xqilla\optimizer\QueryPathNode.hpp"/>
<File RelativePath="..\..\include\xqilla\optimizer\QueryPathTreeGenerator.hpp"/>
<File RelativePath="..\..\include\xqilla\parser\QName.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\ClosureResult.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\TupleResult.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\Sequence.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\ResultBuffer.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\ResultBufferImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\Result.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\ResultImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\SingleResult.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\SequenceResult.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\LazySequenceResult.hpp"/>
<File RelativePath="..\..\include\xqilla\runtime\EmptyResult.hpp"/>
<File RelativePath="..\..\include\xqilla\schema\DocumentCache.hpp"/>
<File RelativePath="..\..\include\xqilla\schema\SequenceType.hpp"/>
<File RelativePath="..\..\include\xqilla\schema\AnyAtomicTypeDatatypeValidator.hpp"/>
<File RelativePath="..\..\include\xqilla\schema\DocumentCacheImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\schema\SchemaValidatorFilter.hpp"/>
<File RelativePath="..\..\include\xqilla\simple-api\XQilla.hpp"/>
<File RelativePath="..\..\include\xqilla\simple-api\XQillaConfiguration.hpp"/>
<File RelativePath="..\..\include\xqilla\simple-api\XQQuery.hpp"/>
<File RelativePath="..\..\include\xqilla\update\FunctionPut.hpp"/>
<File RelativePath="..\..\include\xqilla\update\PendingUpdateList.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UApplyUpdates.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UDelete.hpp"/>
<File RelativePath="..\..\include\xqilla\update\URename.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UReplace.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UReplaceValueOf.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UInsertAsFirst.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UInsertAsLast.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UInsertInto.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UInsertAfter.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UInsertBefore.hpp"/>
<File RelativePath="..\..\include\xqilla\update\UTransform.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\NumUtils.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\XPath2NSUtils.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\XPath2Utils.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\XMLChCompare.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\XStr.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\ContextUtils.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\PrintAST.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\UTF8Str.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\XQillaPlatformUtils.hpp"/>
<File RelativePath="..\..\include\xqilla\utils\UCANormalizer.hpp"/>
<File RelativePath="..\..\include\xqilla\framework\ReferenceCounted.hpp"/>
<File RelativePath="..\..\include\xqilla\framework\XPath2MemoryManager.hpp"/>
<File RelativePath="..\..\include\xqilla\framework\BaseMemoryManager.hpp"/>
<File RelativePath="..\..\include\xqilla\framework\ProxyMemoryManager.hpp"/>
<File RelativePath="..\..\include\xqilla\framework\StringPool.hpp"/>
<File RelativePath="..\..\include\xqilla\framework\XPath2MemoryManagerImpl.hpp"/>
<File RelativePath="..\..\include\xqilla\framework\XQillaExport.hpp"/>
<File RelativePath="..\..\include\xqilla\xerces\XercesConfiguration.hpp"/>
<File RelativePath="..\..\include\xqilla\xqts\TestSuiteParser.hpp"/>
<File RelativePath="..\..\include\xqilla\xqts\TestSuiteResultListener.hpp"/>
<File RelativePath="..\..\include\xqilla\xqts\TestSuiteRunner.hpp"/>
</Filter>
<Filter Name="ast" Filter="">
<File RelativePath="..\..\src\ast\ASTNodeImpl.cpp"/>
<File RelativePath="..\..\src\ast\ConstantFoldingFunction.cpp"/>
<File RelativePath="..\..\src\ast\TupleNode.cpp"/>
<File RelativePath="..\..\src\ast\ContextTuple.cpp"/>
<File RelativePath="..\..\src\ast\ConvertFunctionArg.cpp"/>
<File RelativePath="..\..\src\ast\ForTuple.cpp"/>
<File RelativePath="..\..\src\ast\LetTuple.cpp"/>
<File RelativePath="..\..\src\ast\NumericFunction.cpp"/>
<File RelativePath="..\..\src\ast\OrderByTuple.cpp"/>
<File RelativePath="..\..\src\ast\StaticAnalysis.cpp"/>
<File RelativePath="..\..\src\ast\StaticType.cpp"/>
<File RelativePath="..\..\src\ast\WhereTuple.cpp"/>
<File RelativePath="..\..\src\ast\XPath1Compat.cpp"/>
<File RelativePath="..\..\src\ast\XQAnalyzeString.cpp"/>
<File RelativePath="..\..\src\ast\XQApplyTemplates.cpp"/>
<File RelativePath="..\..\src\ast\XQAtomize.cpp"/>
<File RelativePath="..\..\src\ast\XQEffectiveBooleanValue.cpp"/>
<File RelativePath="..\..\src\ast\XQMap.cpp"/>
<File RelativePath="..\..\src\ast\XQAttributeConstructor.cpp"/>
<File RelativePath="..\..\src\ast\XQNamespaceConstructor.cpp"/>
<File RelativePath="..\..\src\ast\XQCallTemplate.cpp"/>
<File RelativePath="..\..\src\ast\XQCastAs.cpp"/>
<File RelativePath="..\..\src\ast\XQCastableAs.cpp"/>
<File RelativePath="..\..\src\ast\XQCommentConstructor.cpp"/>
<File RelativePath="..\..\src\ast\XQContextItem.cpp"/>
<File RelativePath="..\..\src\ast\XQCopy.cpp"/>
<File RelativePath="..\..\src\ast\XQCopyOf.cpp"/>
<File RelativePath="..\..\src\ast\XQDOMConstructor.cpp"/>
<File RelativePath="..\..\src\ast\XQDocumentConstructor.cpp"/>
<File RelativePath="..\..\src\ast\XQDocumentOrder.cpp"/>
<File RelativePath="..\..\src\ast\XQElementConstructor.cpp"/>
<File RelativePath="..\..\src\ast\XQFunction.cpp"/>
<File RelativePath="..\..\src\ast\XQFunctionCall.cpp"/>
<File RelativePath="..\..\src\ast\XQFunctionConversion.cpp"/>
<File RelativePath="..\..\src\ast\XQFunctionDeref.cpp"/>
<File RelativePath="..\..\src\ast\XQFunctionRef.cpp"/>
<File RelativePath="..\..\src\ast\XQGlobalVariable.cpp"/>
<File RelativePath="..\..\src\ast\XQIf.cpp"/>
<File RelativePath="..\..\src\ast\XQInlineFunction.cpp"/>
<File RelativePath="..\..\src\ast\XQInstanceOf.cpp"/>
<File RelativePath="..\..\src\ast\XQLiteral.cpp"/>
<File RelativePath="..\..\src\ast\XQNamespaceBinding.cpp"/>
<File RelativePath="..\..\src\ast\XQNav.cpp"/>
<File RelativePath="..\..\src\ast\XQOperator.cpp"/>
<File RelativePath="..\..\src\ast\XQOrderingChange.cpp"/>
<File RelativePath="..\..\src\ast\XQPIConstructor.cpp"/>
<File RelativePath="..\..\src\ast\XQPredicate.cpp"/>
<File RelativePath="..\..\src\ast\XQQuantified.cpp"/>
<File RelativePath="..\..\src\ast\XQReturn.cpp"/>
<File RelativePath="..\..\src\ast\XQSequence.cpp"/>
<File RelativePath="..\..\src\ast\XQStep.cpp"/>
<File RelativePath="..\..\src\ast\XQTextConstructor.cpp"/>
<File RelativePath="..\..\src\ast\XQTreatAs.cpp"/>
<File RelativePath="..\..\src\ast\XQTypeswitch.cpp"/>
<File RelativePath="..\..\src\ast\XQValidate.cpp"/>
<File RelativePath="..\..\src\ast\XQVariable.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMConfiguration.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMDocument.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMDocument.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMNodeImpl.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMNodeImpl.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMSequenceBuilder.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMSequenceBuilder.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMUpdateFactory.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMUpdateFactory.hpp"/>
<File RelativePath="..\..\src\functions\FunctionLast.cpp"/>
<File RelativePath="..\..\src\update\UInsertAsLast.cpp"/>
</Filter>
<Filter Name="axis" Filter="">
<File RelativePath="..\..\src\axis\NodeTest.cpp"/>
<File RelativePath="..\..\src\axis\SelfAxis.cpp"/>
</Filter>
<Filter Name="context" Filter="">
<File RelativePath="..\..\src\context\UpdateFactory.cpp"/>
<File RelativePath="..\..\src\context\impl\CodepointCollation.cpp"/>
<File RelativePath="..\..\src\context\impl\CollationImpl.cpp"/>
<File RelativePath="..\..\src\context\impl\ItemFactoryImpl.cpp"/>
<File RelativePath="..\..\src\context\impl\VarHashEntryImpl.cpp"/>
<File RelativePath="..\..\src\context\impl\VarStoreImpl.cpp"/>
<File RelativePath="..\..\src\context\impl\VarTypeStoreImpl.cpp"/>
<File RelativePath="..\..\src\context\impl\VarTypeStoreImpl.hpp"/>
<File RelativePath="..\..\src\context\impl\XQContextImpl.cpp"/>
<File RelativePath="..\..\src\context\impl\XQDynamicContextImpl.cpp"/>
</Filter>
<Filter Name="debug" Filter="">
<File RelativePath="..\..\src\debug\ASTDebugHook.cpp"/>
<File RelativePath="..\..\src\debug\DebugHookDecorator.cpp"/>
<File RelativePath="..\..\src\debug\InputParser.cpp"/>
<File RelativePath="..\..\src\debug\InteractiveDebugger.cpp"/>
<File RelativePath="..\..\src\debug\TupleDebugHook.cpp"/>
<File RelativePath="..\..\src\debug\StackFrame.cpp"/>
</Filter>
<Filter Name="dom-api" Filter="">
<File RelativePath="..\..\src\dom-api\XPath2NodeSerializer.cpp"/>
<File RelativePath="..\..\src\dom-api\XPath2NodeSerializer.hpp"/>
<File RelativePath="..\..\src\dom-api\XQillaImplementation.cpp"/>
<File RelativePath="..\..\src\dom-api\XQillaImplementation.hpp"/>
<File RelativePath="..\..\src\dom-api\impl\XPath2ResultImpl.cpp"/>
<File RelativePath="..\..\src\dom-api\impl\XPath2ResultImpl.hpp"/>
<File RelativePath="..\..\src\dom-api\impl\XPathDocumentImpl.cpp"/>
<File RelativePath="..\..\src\dom-api\impl\XPathDocumentImpl.hpp"/>
<File RelativePath="..\..\src\dom-api\impl\XPathNamespaceImpl.cpp"/>
<File RelativePath="..\..\src\dom-api\impl\XPathNamespaceImpl.hpp"/>
<File RelativePath="..\..\src\dom-api\impl\XQillaBuilderImpl.cpp"/>
<File RelativePath="..\..\src\dom-api\impl\XQillaBuilderImpl.hpp"/>
<File RelativePath="..\..\src\dom-api\impl\XQillaDocumentImpl.cpp"/>
<File RelativePath="..\..\src\dom-api\impl\XQillaDocumentImpl.hpp"/>
<File RelativePath="..\..\src\dom-api\impl\XQillaExpressionImpl.cpp"/>
<File RelativePath="..\..\src\dom-api\impl\XQillaExpressionImpl.hpp"/>
<File RelativePath="..\..\src\dom-api\impl\XQillaNSResolverImpl.cpp"/>
<File RelativePath="..\..\src\dom-api\impl\XQillaXMLGrammarPoolImpl.cpp"/>
<File RelativePath="..\..\src\dom-api\impl\XQillaXMLGrammarPoolImpl.hpp"/>
</Filter>
<Filter Name="events" Filter="">
<File RelativePath="..\..\src\events\ContentSequenceFilter.cpp"/>
<File RelativePath="..\..\src\events\EventGenerator.cpp"/>
<File RelativePath="..\..\src\events\EventSerializer.cpp"/>
<File RelativePath="..\..\src\events\NSFixupFilter.cpp"/>
<File RelativePath="..\..\src\events\NoInheritFilter.cpp"/>
<File RelativePath="..\..\src\events\NoInheritFilter.hpp"/>
<File RelativePath="..\..\src\events\QueryPathTreeFilter.cpp"/>
</Filter>
<Filter Name="exceptions" Filter="">
<File RelativePath="..\..\src\exceptions\InvalidLexicalSpaceException.hpp"/>
<File RelativePath="..\..\src\exceptions\MiscException.hpp"/>
<File RelativePath="..\..\src\exceptions\XQException.cpp"/>
<File RelativePath="..\..\src\exceptions\XQillaException.cpp"/>
</Filter>
<Filter Name="fastxdm" Filter="">
<File RelativePath="..\..\src\fastxdm\FastXDMConfiguration.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMDocument.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMDocument.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMNodeImpl.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMNodeImpl.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMSequenceBuilder.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMSequenceBuilder.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMUpdateFactory.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMUpdateFactory.hpp"/>
</Filter>
<Filter Name="framework" Filter="">
<File RelativePath="..\..\src\framework\BaseMemoryManager.cpp"/>
<File RelativePath="..\..\src\framework\ProxyMemoryManager.cpp"/>
<File RelativePath="..\..\src\framework\ReferenceCounted.cpp"/>
<File RelativePath="..\..\src\framework\StringPool.cpp"/>
<File RelativePath="..\..\src\framework\XPath2MemoryManagerImpl.cpp"/>
</Filter>
<Filter Name="fulltext" Filter="">
<File RelativePath="..\..\src\fulltext\DefaultTokenStore.cpp"/>
<File RelativePath="..\..\src\fulltext\DefaultTokenizer.cpp"/>
<File RelativePath="..\..\src\fulltext\FTAnd.cpp"/>
<File RelativePath="..\..\src\fulltext\FTContains.cpp"/>
<File RelativePath="..\..\src\fulltext\FTContent.cpp"/>
<File RelativePath="..\..\src\fulltext\FTDistance.cpp"/>
<File RelativePath="..\..\src\fulltext\FTMildnot.cpp"/>
<File RelativePath="..\..\src\fulltext\FTOr.cpp"/>
<File RelativePath="..\..\src\fulltext\FTOrder.cpp"/>
<File RelativePath="..\..\src\fulltext\FTScope.cpp"/>
<File RelativePath="..\..\src\fulltext\FTUnaryNot.cpp"/>
<File RelativePath="..\..\src\fulltext\FTWindow.cpp"/>
<File RelativePath="..\..\src\fulltext\FTWords.cpp"/>
</Filter>
<Filter Name="functions" Filter="">
<File RelativePath="..\..\src\functions\ExternalFunction.cpp"/>
<File RelativePath="..\..\src\functions\FuncFactory.cpp"/>
<File RelativePath="..\..\src\functions\FuncFactoryTemplate.hpp"/>
<File RelativePath="..\..\src\functions\FunctionAbs.cpp"/>
<File RelativePath="..\..\src\functions\FunctionAdjustDateTimeToTimezone.cpp"/>
<File RelativePath="..\..\src\functions\FunctionAdjustDateToTimezone.cpp"/>
<File RelativePath="..\..\src\functions\FunctionAdjustTimeToTimezone.cpp"/>
<File RelativePath="..\..\src\functions\FunctionAnalyzeString.cpp"/>
<File RelativePath="..\..\src\functions\FunctionAvg.cpp"/>
<File RelativePath="..\..\src\functions\FunctionBaseURI.cpp"/>
<File RelativePath="..\..\src\functions\FunctionBoolean.cpp"/>
<File RelativePath="..\..\src\functions\FunctionCeiling.cpp"/>
<File RelativePath="..\..\src\functions\FunctionCodepointEqual.cpp"/>
<File RelativePath="..\..\src\functions\FunctionCodepointsToString.cpp"/>
<File RelativePath="..\..\src\functions\FunctionCollection.cpp"/>
<File RelativePath="..\..\src\functions\FunctionCompare.cpp"/>
<File RelativePath="..\..\src\functions\FunctionConcat.cpp"/>
<File RelativePath="..\..\src\functions\FunctionConstructor.cpp"/>
<File RelativePath="..\..\src\functions\FunctionContains.cpp"/>
<File RelativePath="..\..\src\functions\FunctionCount.cpp"/>
<File RelativePath="..\..\src\functions\FunctionCurrentDate.cpp"/>
<File RelativePath="..\..\src\functions\FunctionCurrentDateTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionCurrentTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionData.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDateTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDayFromDate.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDayFromDateTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDaysFromDuration.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDeepEqual.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDefaultCollation.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDistinctValues.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDoc.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDocument.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDocAvailable.cpp"/>
<File RelativePath="..\..\src\functions\FunctionDocumentURI.cpp"/>
<File RelativePath="..\..\src\functions\FunctionEmpty.cpp"/>
<File RelativePath="..\..\src\functions\FunctionEncodeForUri.cpp"/>
<File RelativePath="..\..\src\functions\FunctionEndsWith.cpp"/>
<File RelativePath="..\..\src\functions\FunctionError.cpp"/>
<File RelativePath="..\..\src\functions\FunctionEscapeHtmlUri.cpp"/>
<File RelativePath="..\..\src\functions\FunctionExactlyOne.cpp"/>
<File RelativePath="..\..\src\functions\FunctionExists.cpp"/>
<File RelativePath="..\..\src\functions\FunctionFalse.cpp"/>
<File RelativePath="..\..\src\functions\FunctionFloor.cpp"/>
<File RelativePath="..\..\src\functions\FunctionFunctionArity.cpp"/>
<File RelativePath="..\..\src\functions\FunctionFunctionName.cpp"/>
<File RelativePath="..\..\src\functions\FunctionHoursFromDateTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionHoursFromDuration.cpp"/>
<File RelativePath="..\..\src\functions\FunctionHoursFromTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionId.cpp"/>
<File RelativePath="..\..\src\functions\FunctionIdref.cpp"/>
<File RelativePath="..\..\src\functions\FunctionImplicitTimezone.cpp"/>
<File RelativePath="..\..\src\functions\FunctionInScopePrefixes.cpp"/>
<File RelativePath="..\..\src\functions\FunctionIndexOf.cpp"/>
<File RelativePath="..\..\src\functions\FunctionInsertBefore.cpp"/>
<File RelativePath="..\..\src\functions\FunctionIriToUri.cpp"/>
<File RelativePath="..\..\src\functions\FunctionLang.cpp"/>
<File RelativePath="..\..\src\functions\FunctionLast.cpp"/>
<File RelativePath="..\..\src\functions\FunctionLocalNameFromQName.cpp"/>
<File RelativePath="..\..\src\functions\FunctionLocalname.cpp"/>
<File RelativePath="..\..\src\functions\FunctionLookup.cpp"/>
<File RelativePath="..\..\src\functions\FunctionLowerCase.cpp"/>
<File RelativePath="..\..\src\functions\FunctionMatches.cpp"/>
<File RelativePath="..\..\src\functions\FunctionMax.cpp"/>
<File RelativePath="..\..\src\functions\FunctionMin.cpp"/>
<File RelativePath="..\..\src\functions\FunctionMinutesFromDateTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionMinutesFromDuration.cpp"/>
<File RelativePath="..\..\src\functions\FunctionMinutesFromTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionMonthFromDate.cpp"/>
<File RelativePath="..\..\src\functions\FunctionMonthFromDateTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionMonthsFromDuration.cpp"/>
<File RelativePath="..\..\src\functions\FunctionName.cpp"/>
<File RelativePath="..\..\src\functions\FunctionNamespaceURIForPrefix.cpp"/>
<File RelativePath="..\..\src\functions\FunctionNamespaceURIFromQName.cpp"/>
<File RelativePath="..\..\src\functions\FunctionNamespaceUri.cpp"/>
<File RelativePath="..\..\src\functions\FunctionNilled.cpp"/>
<File RelativePath="..\..\src\functions\FunctionNodeName.cpp"/>
<File RelativePath="..\..\src\functions\FunctionNormalizeSpace.cpp"/>
<File RelativePath="..\..\src\functions\FunctionNormalizeUnicode.cpp"/>
<File RelativePath="..\..\src\functions\FunctionNot.cpp"/>
<File RelativePath="..\..\src\functions\FunctionNumber.cpp"/>
<File RelativePath="..\..\src\functions\FunctionOneOrMore.cpp"/>
<File RelativePath="..\..\src\functions\FunctionParseHTML.cpp"/>
<File RelativePath="..\..\src\functions\FunctionParseJSON.cpp"/>
<File RelativePath="..\..\src\functions\FunctionParseXML.cpp"/>
<File RelativePath="..\..\src\functions\FunctionPartialApply.cpp"/>
<File RelativePath="..\..\src\functions\FunctionPosition.cpp"/>
<File RelativePath="..\..\src\functions\FunctionPrefixFromQName.cpp"/>
<File RelativePath="..\..\src\functions\FunctionQName.cpp"/>
<File RelativePath="..\..\src\functions\FunctionRegexGroup.cpp"/>
<File RelativePath="..\..\src\functions\FunctionRemove.cpp"/>
<File RelativePath="..\..\src\functions\FunctionReplace.cpp"/>
<File RelativePath="..\..\src\functions\FunctionResolveQName.cpp"/>
<File RelativePath="..\..\src\functions\FunctionResolveURI.cpp"/>
<File RelativePath="..\..\src\functions\FunctionReverse.cpp"/>
<File RelativePath="..\..\src\functions\FunctionRoot.cpp"/>
<File RelativePath="..\..\src\functions\FunctionRound.cpp"/>
<File RelativePath="..\..\src\functions\FunctionRoundHalfToEven.cpp"/>
<File RelativePath="..\..\src\functions\FunctionSecondsFromDateTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionSecondsFromDuration.cpp"/>
<File RelativePath="..\..\src\functions\FunctionSecondsFromTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionSerializeJSON.cpp"/>
<File RelativePath="..\..\src\functions\FunctionStartsWith.cpp"/>
<File RelativePath="..\..\src\functions\FunctionStaticBaseURI.cpp"/>
<File RelativePath="..\..\src\functions\FunctionString.cpp"/>
<File RelativePath="..\..\src\functions\FunctionStringJoin.cpp"/>
<File RelativePath="..\..\src\functions\FunctionStringLength.cpp"/>
<File RelativePath="..\..\src\functions\FunctionStringToCodepoints.cpp"/>
<File RelativePath="..\..\src\functions\FunctionSubsequence.cpp"/>
<File RelativePath="..\..\src\functions\FunctionSubstring.cpp"/>
<File RelativePath="..\..\src\functions\FunctionSubstringAfter.cpp"/>
<File RelativePath="..\..\src\functions\FunctionSubstringBefore.cpp"/>
<File RelativePath="..\..\src\functions\FunctionSum.cpp"/>
<File RelativePath="..\..\src\functions\FunctionTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionTimezoneFromDate.cpp"/>
<File RelativePath="..\..\src\functions\FunctionTimezoneFromDateTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionTimezoneFromTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionTokenize.cpp"/>
<File RelativePath="..\..\src\functions\FunctionTrace.cpp"/>
<File RelativePath="..\..\src\functions\FunctionTranslate.cpp"/>
<File RelativePath="..\..\src\functions\FunctionTrue.cpp"/>
<File RelativePath="..\..\src\functions\FunctionUnordered.cpp"/>
<File RelativePath="..\..\src\functions\FunctionUnparsedText.cpp"/>
<File RelativePath="..\..\src\functions\FunctionUpperCase.cpp"/>
<File RelativePath="..\..\src\functions\FunctionYearFromDate.cpp"/>
<File RelativePath="..\..\src\functions\FunctionYearFromDateTime.cpp"/>
<File RelativePath="..\..\src\functions\FunctionYearsFromDuration.cpp"/>
<File RelativePath="..\..\src\functions\FunctionZeroOrOne.cpp"/>
<File RelativePath="..\..\src\functions\XQUserFunction.cpp"/>
<File RelativePath="..\..\src\functions\XQillaFunction.cpp"/>
</Filter>
<Filter Name="items" Filter="">
<File RelativePath="..\..\src\items\ATDurationOrDerived.cpp"/>
<File RelativePath="..\..\src\items\ATUntypedAtomic.cpp"/>
<File RelativePath="..\..\src\items\AnyAtomicType.cpp"/>
<File RelativePath="..\..\src\items\DatatypeFactory.cpp"/>
<File RelativePath="..\..\src\items\DatatypeFactoryTemplate.hpp"/>
<File RelativePath="..\..\src\items\DatatypeLookup.cpp"/>
<File RelativePath="..\..\src\items\DateOrTimeType.cpp"/>
<File RelativePath="..\..\src\items\Item.cpp"/>
<File RelativePath="..\..\src\items\Node.cpp"/>
<File RelativePath="..\..\src\items\Numeric.cpp"/>
<File RelativePath="..\..\src\items\Timezone.cpp"/>
<File RelativePath="..\..\src\items\impl\ATAnySimpleTypeImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATAnySimpleTypeImpl.hpp"/>
<File RelativePath="..\..\src\items\impl\ATAnyURIOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATAnyURIOrDerivedImpl.hpp"/>
<File RelativePath="..\..\src\items\impl\ATBase64BinaryOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATBase64BinaryOrDerivedImpl.hpp"/>
<File RelativePath="..\..\src\items\impl\ATBooleanOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATDateOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATDateTimeOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATDecimalOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATDoubleOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATDurationOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATFloatOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATGDayOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATGMonthDayOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATGMonthOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATGYearMonthOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATGYearOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATHexBinaryOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATHexBinaryOrDerivedImpl.hpp"/>
<File RelativePath="..\..\src\items\impl\ATNotationOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATNotationOrDerivedImpl.hpp"/>
<File RelativePath="..\..\src\items\impl\ATQNameOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATStringOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATStringOrDerivedImpl.hpp"/>
<File RelativePath="..\..\src\items\impl\ATTimeOrDerivedImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATUntypedAtomicImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\ATUntypedAtomicImpl.hpp"/>
<File RelativePath="..\..\src\items\impl\FunctionRefImpl.cpp"/>
<File RelativePath="..\..\src\items\impl\FunctionRefImpl.hpp"/>
</Filter>
<Filter Name="lexer" Filter="">
<File RelativePath="..\..\src\lexer\FlexLexer.h"/>
<File RelativePath="..\..\src\lexer\XQLexer.cpp"/>
<File RelativePath="..\..\src\lexer\XQLexer.hpp"/>
<File RelativePath="..\..\src\lexer\XQLexer2.cpp"/>
<File RelativePath="..\..\src\lexer\XSLT2Lexer.cpp"/>
<File RelativePath="..\..\src\lexer\XSLT2Lexer.hpp"/>
</Filter>
<Filter Name="mapm" Filter="">
<File RelativePath="..\..\src\mapm\m_apm.cpp"/>
<File RelativePath="..\..\src\mapm\m_apm_lc.h"/>
<File RelativePath="..\..\src\mapm\mapm5sin.c"/>
<File RelativePath="..\..\src\mapm\mapm_add.c"/>
<File RelativePath="..\..\src\mapm\mapm_cpi.c"/>
<File RelativePath="..\..\src\mapm\mapm_div.c"/>
<File RelativePath="..\..\src\mapm\mapm_exp.c"/>
<File RelativePath="..\..\src\mapm\mapm_fam.c"/>
<File RelativePath="..\..\src\mapm\mapm_fft.c"/>
<File RelativePath="..\..\src\mapm\mapm_flr.c"/>
<File RelativePath="..\..\src\mapm\mapm_fpf.c"/>
<File RelativePath="..\..\src\mapm\mapm_gcd.c"/>
<File RelativePath="..\..\src\mapm\mapm_lg2.c"/>
<File RelativePath="..\..\src\mapm\mapm_lg3.c"/>
<File RelativePath="..\..\src\mapm\mapm_log.c"/>
<File RelativePath="..\..\src\mapm\mapm_mt.cpp"/>
<File RelativePath="..\..\src\mapm\mapm_mul.c"/>
<File RelativePath="..\..\src\mapm\mapm_pow.c"/>
<File RelativePath="..\..\src\mapm\mapm_rcp.c"/>
<File RelativePath="..\..\src\mapm\mapm_rnd.c"/>
<File RelativePath="..\..\src\mapm\mapm_set.c"/>
<File RelativePath="..\..\src\mapm\mapm_sin.c"/>
<File RelativePath="..\..\src\mapm\mapmasin.c"/>
<File RelativePath="..\..\src\mapm\mapmasn0.c"/>
<File RelativePath="..\..\src\mapm\mapmcbrt.c"/>
<File RelativePath="..\..\src\mapm\mapmcnst.c"/>
<File RelativePath="..\..\src\mapm\mapmfact.c"/>
<File RelativePath="..\..\src\mapm\mapmfmul.c"/>
<File RelativePath="..\..\src\mapm\mapmgues.c"/>
<File RelativePath="..\..\src\mapm\mapmhasn.c"/>
<File RelativePath="..\..\src\mapm\mapmhsin.c"/>
<File RelativePath="..\..\src\mapm\mapmipwr.c"/>
<File RelativePath="..\..\src\mapm\mapmistr.c"/>
<File RelativePath="..\..\src\mapm\mapmpwr2.c"/>
<File RelativePath="..\..\src\mapm\mapmrsin.c"/>
<File RelativePath="..\..\src\mapm\mapmsqrt.c"/>
<File RelativePath="..\..\src\mapm\mapmstck.c"/>
<File RelativePath="..\..\src\mapm\mapmutil.c"/>
<File RelativePath="..\..\src\mapm\mapmutl2.c"/>
</Filter>
<Filter Name="operators" Filter="">
<File RelativePath="..\..\src\operators\And.cpp"/>
<File RelativePath="..\..\src\operators\ArithmeticOperator.cpp"/>
<File RelativePath="..\..\src\operators\ComparisonOperator.cpp"/>
<File RelativePath="..\..\src\operators\Divide.cpp"/>
<File RelativePath="..\..\src\operators\Equals.cpp"/>
<File RelativePath="..\..\src\operators\Except.cpp"/>
<File RelativePath="..\..\src\operators\GeneralComp.cpp"/>
<File RelativePath="..\..\src\operators\GreaterThan.cpp"/>
<File RelativePath="..\..\src\operators\GreaterThanEqual.cpp"/>
<File RelativePath="..\..\src\operators\IntegerDivide.cpp"/>
<File RelativePath="..\..\src\operators\Intersect.cpp"/>
<File RelativePath="..\..\src\operators\LessThan.cpp"/>
<File RelativePath="..\..\src\operators\LessThanEqual.cpp"/>
<File RelativePath="..\..\src\operators\Minus.cpp"/>
<File RelativePath="..\..\src\operators\Mod.cpp"/>
<File RelativePath="..\..\src\operators\Multiply.cpp"/>
<File RelativePath="..\..\src\operators\NodeComparison.cpp"/>
<File RelativePath="..\..\src\operators\NotEquals.cpp"/>
<File RelativePath="..\..\src\operators\Or.cpp"/>
<File RelativePath="..\..\src\operators\OrderComparison.cpp"/>
<File RelativePath="..\..\src\operators\Plus.cpp"/>
<File RelativePath="..\..\src\operators\Range.cpp"/>
<File RelativePath="..\..\src\operators\UnaryMinus.cpp"/>
<File RelativePath="..\..\src\operators\Union.cpp"/>
</Filter>
<Filter Name="optimizer" Filter="">
<File RelativePath="..\..\src\optimizer\ASTCopier.cpp"/>
<File RelativePath="..\..\src\optimizer\ASTReleaser.cpp"/>
<File RelativePath="..\..\src\optimizer\ASTVisitor.cpp"/>
<File RelativePath="..\..\src\optimizer\PartialEvaluator.cpp"/>
<File RelativePath="..\..\src\optimizer\StaticTyper.cpp"/>
<File RelativePath="..\..\src\optimizer\Optimizer.cpp"/>
<File RelativePath="..\..\src\optimizer\QueryPathNode.cpp"/>
<File RelativePath="..\..\src\optimizer\QueryPathTreeGenerator.cpp"/>
</Filter>
<Filter Name="parser" Filter="">
<File RelativePath="..\..\src\parser\QName.cpp"/>
<File RelativePath="..\..\src\parser\XQParser.cpp"/>
<File RelativePath="..\..\src\parser\XQParser.hpp"/>
</Filter>
<Filter Name="runtime" Filter="">
<File RelativePath="..\..\src\runtime\ClosureResult.cpp"/>
<File RelativePath="..\..\src\runtime\EmptyResult.cpp"/>
<File RelativePath="..\..\src\runtime\LazySequenceResult.cpp"/>
<File RelativePath="..\..\src\runtime\Result.cpp"/>
<File RelativePath="..\..\src\runtime\ResultBuffer.cpp"/>
<File RelativePath="..\..\src\runtime\ResultBufferImpl.cpp"/>
<File RelativePath="..\..\src\runtime\ResultImpl.cpp"/>
<File RelativePath="..\..\src\runtime\Sequence.cpp"/>
<File RelativePath="..\..\src\runtime\SequenceResult.cpp"/>
<File RelativePath="..\..\src\runtime\SingleResult.cpp"/>
</Filter>
<Filter Name="schema" Filter="">
<File RelativePath="..\..\src\schema\AnyAtomicTypeDatatypeValidator.cpp"/>
<File RelativePath="..\..\src\schema\DocumentCacheImpl.cpp"/>
<File RelativePath="..\..\src\schema\FaxppDocumentCacheImpl.cpp"/>
<File RelativePath="..\..\src\schema\FaxppDocumentCacheImpl.hpp"/>
<File RelativePath="..\..\src\schema\SchemaValidatorFilter.cpp"/>
<File RelativePath="..\..\src\schema\SequenceType.cpp"/>
</Filter>
<Filter Name="simple-api" Filter="">
<File RelativePath="..\..\src\simple-api\XQQuery.cpp"/>
<File RelativePath="..\..\src\simple-api\XQilla.cpp"/>
</Filter>
<Filter Name="update" Filter="">
<File RelativePath="..\..\src\update\FunctionPut.cpp"/>
<File RelativePath="..\..\src\update\PendingUpdateList.cpp"/>
<File RelativePath="..\..\src\update\UApplyUpdates.cpp"/>
<File RelativePath="..\..\src\update\UDelete.cpp"/>
<File RelativePath="..\..\src\update\UInsertAfter.cpp"/>
<File RelativePath="..\..\src\update\UInsertAsFirst.cpp"/>
<File RelativePath="..\..\src\update\UInsertAsLast.cpp"/>
<File RelativePath="..\..\src\update\UInsertBefore.cpp"/>
<File RelativePath="..\..\src\update\UInsertInto.cpp"/>
<File RelativePath="..\..\src\update\URename.cpp"/>
<File RelativePath="..\..\src\update\UReplace.cpp"/>
<File RelativePath="..\..\src\update\UReplaceValueOf.cpp"/>
<File RelativePath="..\..\src\update\UTransform.cpp"/>
</Filter>
<Filter Name="utils" Filter="">
<File RelativePath="..\..\src\utils\ContextUtils.cpp"/>
<File RelativePath="..\..\src\utils\DateUtils.cpp"/>
<File RelativePath="..\..\src\utils\DateUtils.hpp"/>
<File RelativePath="..\..\src\utils\NumUtils.cpp"/>
<File RelativePath="..\..\src\utils\PrintAST.cpp"/>
<File RelativePath="..\..\src\utils\UCANormalizer.cpp"/>
<File RelativePath="..\..\src\utils\UCANormalizer1.cpp"/>
<File RelativePath="..\..\src\utils\UCANormalizer2.cpp"/>
<File RelativePath="..\..\src\utils\UCANormalizer3.cpp"/>
<File RelativePath="..\..\src\utils\UCANormalizer4.cpp"/>
<File RelativePath="..\..\src\utils\UTF8Str.cpp"/>
<File RelativePath="..\..\src\utils\XMLChCompare.cpp"/>
<File RelativePath="..\..\src\utils\XPath2NSUtils.cpp"/>
<File RelativePath="..\..\src\utils\XPath2Utils.cpp"/>
<File RelativePath="..\..\src\utils\XQillaPlatformUtils.cpp"/>
<File RelativePath="..\..\src\utils\XStr.cpp"/>
</Filter>
<Filter Name="xerces" Filter="">
<File RelativePath="..\..\src\xerces\AncestorAxis.cpp"/>
<File RelativePath="..\..\src\xerces\AncestorAxis.hpp"/>
<File RelativePath="..\..\src\xerces\AncestorOrSelfAxis.cpp"/>
<File RelativePath="..\..\src\xerces\AncestorOrSelfAxis.hpp"/>
<File RelativePath="..\..\src\xerces\AttributeAxis.cpp"/>
<File RelativePath="..\..\src\xerces\AttributeAxis.hpp"/>
<File RelativePath="..\..\src\xerces\Axis.cpp"/>
<File RelativePath="..\..\src\xerces\Axis.hpp"/>
<File RelativePath="..\..\src\xerces\ChildAxis.cpp"/>
<File RelativePath="..\..\src\xerces\ChildAxis.hpp"/>
<File RelativePath="..\..\src\xerces\DescendantAxis.cpp"/>
<File RelativePath="..\..\src\xerces\DescendantAxis.hpp"/>
<File RelativePath="..\..\src\xerces\DescendantOrSelfAxis.cpp"/>
<File RelativePath="..\..\src\xerces\DescendantOrSelfAxis.hpp"/>
<File RelativePath="..\..\src\xerces\FollowingAxis.cpp"/>
<File RelativePath="..\..\src\xerces\FollowingAxis.hpp"/>
<File RelativePath="..\..\src\xerces\FollowingSiblingAxis.cpp"/>
<File RelativePath="..\..\src\xerces\FollowingSiblingAxis.hpp"/>
<File RelativePath="..\..\src\xerces\NamespaceAxis.cpp"/>
<File RelativePath="..\..\src\xerces\NamespaceAxis.hpp"/>
<File RelativePath="..\..\src\xerces\ParentAxis.cpp"/>
<File RelativePath="..\..\src\xerces\ParentAxis.hpp"/>
<File RelativePath="..\..\src\xerces\PrecedingAxis.cpp"/>
<File RelativePath="..\..\src\xerces\PrecedingAxis.hpp"/>
<File RelativePath="..\..\src\xerces\PrecedingSiblingAxis.cpp"/>
<File RelativePath="..\..\src\xerces\PrecedingSiblingAxis.hpp"/>
<File RelativePath="..\..\src\xerces\XercesConfiguration.cpp"/>
<File RelativePath="..\..\src\xerces\XercesNodeImpl.cpp"/>
<File RelativePath="..\..\src\xerces\XercesNodeImpl.hpp"/>
<File RelativePath="..\..\src\xerces\XercesSequenceBuilder.cpp"/>
<File RelativePath="..\..\src\xerces\XercesSequenceBuilder.hpp"/>
<File RelativePath="..\..\src\xerces\XercesURIResolver.cpp"/>
<File RelativePath="..\..\src\xerces\XercesURIResolver.hpp"/>
<File RelativePath="..\..\src\xerces\XercesUpdateFactory.cpp"/>
<File RelativePath="..\..\src\xerces\XercesUpdateFactory.hpp"/>
</Filter>
<Filter Name="xqts" Filter="">
<File RelativePath="..\..\src\xqts\TestSuiteParser.cpp"/>
<File RelativePath="..\..\src\xqts\TestSuiteResultListener.cpp"/>
<File RelativePath="..\..\src\xqts\TestSuiteRunner.cpp"/>
</Filter>
<Filter Name="yajl" Filter="">
<File RelativePath="..\..\src\yajl\yajl.c"/>
<File RelativePath="..\..\src\yajl\yajl_buf.c"/>
<File RelativePath="..\..\src\yajl\yajl_buf.h"/>
<File RelativePath="..\..\src\yajl\yajl_common.h"/>
<File RelativePath="..\..\src\yajl\yajl_encode.c"/>
<File RelativePath="..\..\src\yajl\yajl_encode.h"/>
<File RelativePath="..\..\src\yajl\yajl_gen.c"/>
<File RelativePath="..\..\src\yajl\yajl_gen.h"/>
<File RelativePath="..\..\src\yajl\yajl_lex.c"/>
<File RelativePath="..\..\src\yajl\yajl_lex.h"/>
<File RelativePath="..\..\src\yajl\yajl_parse.h"/>
<File RelativePath="..\..\src\yajl\yajl_parser.c"/>
<File RelativePath="..\..\src\yajl\yajl_parser.h"/>
</Filter>
<Filter Name="xqc" Filter="">
<File RelativePath="..\..\src\xqc\XQillaXQCImplementation.cpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCImplementation.hpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCStaticContext.cpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCStaticContext.hpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCDynamicContext.cpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCDynamicContext.hpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCExpression.cpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCExpression.hpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCSequence.cpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCSequence.hpp"/>
<File RelativePath="..\..\src\xqc\XQillaXQCInputStream.hpp"/>
</Filter>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqtsRunner" OutputDirectory="..\..\build\windows\VC7.1\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" Detect64BitPortabilityProblems="TRUE" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -42,19 +42,16 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqtsRunner", "xqtsRunner.vc
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla_static", "xqilla_static.vcproj", "{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla_cmd_static", "xqilla_cmd_static.vcproj", "{411BCA29-C615-4E4F-B6F0-07580823EC0B}"
ProjectSection(ProjectDependencies) = postProject
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1} = {B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}
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
@ -65,6 +62,12 @@ Global
{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|Win32
{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|Win32
{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
@ -73,6 +76,12 @@ Global
{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|Win32
{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|Win32
{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
@ -81,6 +90,12 @@ Global
{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|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|x64.ActiveCfg = Release|x64
{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.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
@ -89,6 +104,12 @@ Global
{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|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|x64.ActiveCfg = Release|x64
{55BEA039-4B29-4909-902A-9DD4BEADBCD0}.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
@ -97,6 +118,12 @@ Global
{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|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|x64.ActiveCfg = Release|x64
{6672DE96-EA92-44A2-900E-6868A86FB044}.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
@ -105,6 +132,12 @@ Global
{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|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|x64.ActiveCfg = Release|x64
{E1A71F82-696D-4439-B647-CE04D75E49DC}.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
@ -113,6 +146,12 @@ Global
{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|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|x64.ActiveCfg = Release|x64
{31B7B9AA-109C-4B71-ADA6-274A6420969E}.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
@ -121,6 +160,12 @@ Global
{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|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|x64.ActiveCfg = Release|x64
{619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|x64.Build.0 = 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
@ -129,14 +174,12 @@ Global
{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
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Debug|Win32.ActiveCfg = Debug|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Debug|x64.ActiveCfg = Debug|x64
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Release|Win32.ActiveCfg = Release|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Release|x64.ActiveCfg = Release|x64
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Debug|Win32.ActiveCfg = Debug|Win32
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Debug|x64.ActiveCfg = Debug|x64
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Release|Win32.ActiveCfg = Release|Win32
{411BCA29-C615-4E4F-B6F0-07580823EC0B}.Release|x64.ActiveCfg = Release|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|Win32.ActiveCfg = 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|x64.ActiveCfg = Release|x64
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
@ -34,8 +34,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -45,7 +45,7 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
@ -56,8 +56,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -67,8 +67,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-basic.exe" ProgramDatabaseFile="$(OutDir)/dom-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
@ -34,8 +34,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -45,7 +45,7 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
@ -56,8 +56,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -67,8 +67,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-context-item.exe" ProgramDatabaseFile="$(OutDir)/dom-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-resolver" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-resolver" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
@ -34,8 +34,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-resolver" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -45,7 +45,7 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
@ -56,8 +56,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/dom-resolver" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -67,8 +67,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/dom-resolver.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/dom-resolver.exe" ProgramDatabaseFile="$(OutDir)/dom-resolver.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
@ -34,8 +34,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -45,7 +45,7 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
@ -56,8 +56,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -67,8 +67,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/simple-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-basic.exe" ProgramDatabaseFile="$(OutDir)/simple-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
@ -34,8 +34,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -45,7 +45,7 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
@ -56,8 +56,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/simple-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -67,8 +67,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/simple-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/simple-context-item.exe" ProgramDatabaseFile="$(OutDir)/simple-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xmarkRunner" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xmarkRunner" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
@ -34,8 +34,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xmarkRunner" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -45,7 +45,7 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
@ -56,8 +56,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xmarkRunner" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -67,8 +67,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xmarkRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xmarkRunner.exe" ProgramDatabaseFile="$(OutDir)/xmarkRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
@ -34,8 +34,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -45,7 +45,7 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
@ -56,8 +56,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-basic" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -67,8 +67,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqc-basic.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-basic.exe" ProgramDatabaseFile="$(OutDir)/xqc-basic.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
@ -34,8 +34,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -45,7 +45,7 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
@ -56,8 +56,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqc-context-item" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -67,8 +67,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqc-context-item.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqc-context-item.exe" ProgramDatabaseFile="$(OutDir)/xqc-context-item.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

View file

@ -12,10 +12,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;XQILLA_APIS;_USRDLL" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3d.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22d.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22d.dll" ProgramDatabaseFile="$(OutDir)/xqilla22d.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3d.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22d.lib" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla22d.dll" ProgramDatabaseFile="$(OutDir)/xqilla22d.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Debug|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" AdditionalOptions="/machine:x86" OutputFile="$(OutDir)/xqilla22sd.lib"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="2" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -23,10 +32,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;XQILLA_APIS;_USRDLL" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22.dll" ProgramDatabaseFile="$(OutDir)/xqilla22.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22.dll" ProgramDatabaseFile="$(OutDir)/xqilla22.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" AdditionalOptions="/machine:x86" OutputFile="$(OutDir)/xqilla22s.lib"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="2" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -34,10 +52,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;XQILLA_APIS;_USRDLL" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3d.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22d.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22d.dll" ProgramDatabaseFile="$(OutDir)/xqilla22d.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3d.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22d.lib" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla22d.dll" ProgramDatabaseFile="$(OutDir)/xqilla22d.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" AdditionalOptions="/machine:x64" OutputFile="$(OutDir)/xqilla22sd.lib"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="2" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -45,10 +72,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;XQILLA_APIS;_USRDLL" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22.dll" ProgramDatabaseFile="$(OutDir)/xqilla22.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" AdditionalOptions="/machine:x64" OutputFile="$(OutDir)/xqilla22s.lib"/></Configuration>
<Configuration Name="Debug|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="2" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -56,10 +92,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;XQILLA_APIS;_USRDLL" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3d.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22d.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22d.dll" ProgramDatabaseFile="$(OutDir)/xqilla22d.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3d.lib" AdditionalLibraryDirectories="" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22d.lib" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla22d.dll" ProgramDatabaseFile="$(OutDir)/xqilla22d.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Debug|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" AdditionalOptions="/machine:IA64" OutputFile="$(OutDir)/xqilla22sd.lib"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="2" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -67,10 +112,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;XQILLA_APIS;_USRDLL" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3.lib" AdditionalLibraryDirectories="../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22.dll" ProgramDatabaseFile="$(OutDir)/xqilla22.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xerces-c_3.lib" AdditionalLibraryDirectories="" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" ImportLibrary="$(OutDir)/xqilla22.lib" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla22.dll" ProgramDatabaseFile="$(OutDir)/xqilla22.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="4" IntermediateDirectory="./$(OutDir)/xqilla" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLibrarianTool" AdditionalOptions="/machine:IA64" OutputFile="$(OutDir)/xqilla22s.lib"/></Configuration>
</Configurations>
<References/>
<Files>
@ -539,17 +593,6 @@
<File RelativePath="..\..\src\ast\XQTypeswitch.cpp"/>
<File RelativePath="..\..\src\ast\XQValidate.cpp"/>
<File RelativePath="..\..\src\ast\XQVariable.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMConfiguration.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMDocument.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMDocument.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMNodeImpl.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMNodeImpl.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMSequenceBuilder.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMSequenceBuilder.hpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMUpdateFactory.cpp"/>
<File RelativePath="..\..\src\fastxdm\FastXDMUpdateFactory.hpp"/>
<File RelativePath="..\..\src\functions\FunctionLast.cpp"/>
<File RelativePath="..\..\src\update\UInsertAsLast.cpp"/>
</Filter>
<Filter Name="axis" Filter="">
<File RelativePath="..\..\src\axis\NodeTest.cpp"/>

View file

@ -12,10 +12,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Debug|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22sd.lib xerces-c_static_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -23,10 +32,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22s.lib xerces-c_static_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -34,10 +52,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22sd.lib xerces-c_static_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -45,10 +72,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22s.lib xerces-c_static_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Debug|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -56,10 +92,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Debug|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Debug" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22sd.lib xerces-c_static_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
@ -67,10 +112,19 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Static Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Static Release" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqilla_cmd.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22s.lib xerces-c_static_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla_cmd.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
</Configurations>
<References/>
<Files>

View file

@ -1,68 +0,0 @@
<VisualStudioProject Name="xqilla_cmd_static" ProjectGUID="{411BCA29-C615-4E4F-B6F0-07580823EC0B}" ProjectType="Visual C++" Version="8.00">
<Platforms>
<Platform Name="Win32"/>
<Platform Name="x64"/>
<Platform Name="IA64"/>
</Platforms>
<Configurations>
<Configuration Name="Debug|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd_static" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22sd.lib xerces-c_static_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/Static$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/Static$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd_static" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22s.lib xerces-c_static_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/Static$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/Static$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd_static" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22sd.lib xerces-c_static_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/Static$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd_static" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22s.lib xerces-c_static_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/Static$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Debug|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd_static" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="1" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22sd.lib xerces-c_static_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/Static$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqilla_cmd_static" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release_static" UseOfMFC="0">
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqilla_cmd_static.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;XQILLA_API=;XML_LIBRARY=" RuntimeLibrary="0" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22s.lib xerces-c_static_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/Static$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqilla.exe" ProgramDatabaseFile="$(OutDir)/xqilla.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\..\src\samples\xqilla\xqilla-commandline.cpp"/>
</Files>
<Globals/>
</VisualStudioProject>

File diff suppressed because it is too large Load diff

View file

@ -12,8 +12,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|Win32" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqtsRunner" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -23,8 +23,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x86" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Debug|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqtsRunner" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Debug" UseOfMFC="0">
@ -34,8 +34,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|x64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqtsRunner" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -45,7 +45,7 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:x64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
@ -56,8 +56,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="0" PrecompiledHeaderFile="./$(OutDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" BasicRuntimeChecks="3" CompileAs="0" DebugInformationFormat="3" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="0" PrecompiledHeaderFile="./$(IntDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="3" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22d.lib xerces-c_3d.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="2" OptimizeReferences="1" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
<Configuration Name="Release|IA64" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="2" ConfigurationType="1" IntermediateDirectory="./$(OutDir)/xqtsRunner" OutputDirectory="..\..\build\windows\VC8\$(PlatformName)\Release" UseOfMFC="0">
@ -67,8 +67,8 @@
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(OutDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(OutDir)/" Optimization="2" PrecompiledHeaderFile="./$(OutDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCCLCompilerTool" AdditionalIncludeDirectories="../../include,../../src/lexer,../../../xerces-c-src/include,../../../xerces-c-src/src" AssemblerListingLocation="./$(IntDir)/" CompileAs="0" DebugInformationFormat="3" EnableFunctionLevelLinking="TRUE" InlineFunctionExpansion="1" MinimalRebuild="TRUE" ObjectFile="./$(IntDir)/" Optimization="2" PrecompiledHeaderFile="./$(IntDir)/xqtsRunner.pch" PreprocessorDefinitions="WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE" RuntimeLibrary="2" StringPooling="TRUE" SuppressStartupBanner="TRUE" UsePrecompiledHeader="0" WarningLevel="3"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="xqilla22.lib xerces-c_3.lib" AdditionalLibraryDirectories="$(OutDir)" AdditionalOptions="/machine:IA64" GenerateDebugInformation="TRUE" LinkIncremental="1" OptimizeReferences="2" OutputFile="$(OutDir)/xqtsRunner.exe" ProgramDatabaseFile="$(OutDir)/xqtsRunner.pdb" SuppressStartupBanner="TRUE" TargetMachine="0"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/></Configuration>
</Configurations>

9397
aclocal.m4 vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

16519
configure vendored

File diff suppressed because it is too large Load diff

View file

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

View file

@ -5,104 +5,96 @@
<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.5.5 -->
<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="classes.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>
<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>
<a name="l00005"></a>00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
<a name="l00006"></a>00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
<a name="l00007"></a>00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
<a name="l00008"></a>00008 <span class="comment"> * </span>
<a name="l00009"></a>00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00010"></a>00010 <span class="comment"> * </span>
<a name="l00011"></a>00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
<a name="l00012"></a>00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
<a name="l00013"></a>00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<a name="l00014"></a>00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
<a name="l00015"></a>00015 <span class="comment"> * limitations under the License.</span>
<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: DOMAttr.hpp 527149 2007-04-10 14:56:39Z amassari $</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_DOMATTR_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMAttr_8hpp.html#871264c7a5d636ab012da635e4545a50">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;<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="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#f22e3ac423ed416f507f67e99e4a6749">00064</a> <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a>() {}
<a name="l00065"></a><a class="code" href="classxercesc_1_1DOMAttr.html#2e6e731c03f10a3c8116549556ca2b50">00065</a> <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">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>
<a name="l00070"></a>00070 <span class="comment">// Unimplemented constructors and operators</span>
<a name="l00071"></a>00071 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00074"></a>00074 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMAttr.html" title="The DOMAttr class refers to an attribute of an XML element.">DOMAttr</a> &amp; operator = (<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;);
<a name="l00076"></a>00076
<a name="l00077"></a>00077 <span class="keyword">public</span>:
<a name="l00078"></a>00078 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00079"></a>00079 <span class="comment">// All constructors are hidden, just the destructor is available</span>
<a name="l00080"></a>00080 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00087"></a><a class="code" href="classxercesc_1_1DOMAttr.html#92f914d9871b78a61bc70997a01eced8">00087</a> <span class="comment"></span> <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>() {};
<a name="l00089"></a>00089
<a name="l00090"></a>00090 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00091"></a>00091 <span class="comment">// Virtual DOMAttr interface</span>
<a name="l00092"></a>00092 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00095"></a>00095 <span class="comment"></span> <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00096"></a>00096 <span class="comment">// Getter methods</span>
<a name="l00097"></a>00097 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00102"></a>00102 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * getName() <span class="keyword">const</span> = 0;
<a name="l00103"></a>00103
<a name="l00112"></a>00112 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> getSpecified() <span class="keyword">const</span> = 0;
<a name="l00113"></a>00113
<a name="l00121"></a>00121 <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * getValue() <span class="keyword">const</span> = 0;
<a name="l00122"></a>00122
<a name="l00123"></a>00123 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00124"></a>00124 <span class="comment">// Setter methods</span>
<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...">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...">DOMTypeInfo</a> * getSchemaTypeInfo() <span class="keyword">const</span> = 0;
<a name="l00167"></a>00167
<a name="l00169"></a>00169
<a name="l00170"></a>00170 };
<a name="l00171"></a>00171
<a name="l00172"></a>00172 XERCES_CPP_NAMESPACE_END
<a name="l00173"></a>00173
<a name="l00174"></a>00174 <span class="preprocessor">#endif</span>
<a name="l00175"></a>00175 <span class="preprocessor"></span>
<a name="l00176"></a>00176
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:34 2009 for XQilla DOM Level 3 API by&nbsp;
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<h1>DOMAttr.hpp</h1><a href="DOMAttr_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
00008 <span class="comment"> * </span>
00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
00010 <span class="comment"> * </span>
00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
00015 <span class="comment"> * limitations under the License.</span>
00016 <span class="comment"> */</span>
00017
00018 <span class="comment">/*</span>
00019 <span class="comment"> * $Id: DOMAttr.hpp 527149 2007-04-10 14:56:39Z amassari $</span>
00020 <span class="comment"> */</span>
00021
00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMATTR_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMAttr_8hpp.html#a0">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMATTR_HPP</span>
00024 <span class="preprocessor"></span>
00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNode_8hpp.html">xercesc/dom/DOMNode.hpp</a>&gt;</span>
00027
00028 XERCES_CPP_NAMESPACE_BEGIN
00029
00030 <span class="keyword">class </span>DOMElement;
00031 <span class="keyword">class </span>DOMTypeInfo;
00032
<a name="l00057"></a><a class="code" href="classxercesc_1_1DOMAttr.html">00057</a> <span class="keyword">class </span>CDOM_EXPORT DOMAttr: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html">DOMNode</a> {
00058 <span class="keyword">protected</span>:
00059 <span class="comment">// -----------------------------------------------------------------------</span>
00060 <span class="comment">// Hidden constructors</span>
00061 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00064"></a><a class="code" href="classxercesc_1_1DOMAttr.html#z49_0">00064</a> <span class="comment"></span> DOMAttr() {}
<a name="l00065"></a><a class="code" href="classxercesc_1_1DOMAttr.html#z49_1">00065</a> DOMAttr(<span class="keyword">const</span> DOMAttr &amp;other) : <a class="code" href="classxercesc_1_1DOMNode.html">DOMNode</a>(other) {}
00067
00068 <span class="keyword">private</span>:
00069 <span class="comment">// -----------------------------------------------------------------------</span>
00070 <span class="comment">// Unimplemented constructors and operators</span>
00071 <span class="comment">// -----------------------------------------------------------------------</span>
00074 <span class="comment"></span> DOMAttr &amp; operator = (<span class="keyword">const</span> DOMAttr &amp;);
00076
00077 <span class="keyword">public</span>:
00078 <span class="comment">// -----------------------------------------------------------------------</span>
00079 <span class="comment">// All constructors are hidden, just the destructor is available</span>
00080 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00087"></a><a class="code" href="classxercesc_1_1DOMAttr.html#z53_0">00087</a> <span class="comment"></span> <span class="keyword">virtual</span> ~DOMAttr() {};
00089
00090 <span class="comment">// -----------------------------------------------------------------------</span>
00091 <span class="comment">// Virtual DOMAttr interface</span>
00092 <span class="comment">// -----------------------------------------------------------------------</span>
00095 <span class="comment"></span> <span class="comment">// -----------------------------------------------------------------------</span>
00096 <span class="comment">// Getter methods</span>
00097 <span class="comment">// -----------------------------------------------------------------------</span>
00102 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * getName() <span class="keyword">const </span>= 0;
00103
00112 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> getSpecified() <span class="keyword">const </span>= 0;
00113
00121 <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * getValue() <span class="keyword">const </span>= 0;
00122
00123 <span class="comment">// -----------------------------------------------------------------------</span>
00124 <span class="comment">// Setter methods</span>
00125 <span class="comment">// -----------------------------------------------------------------------</span>
00133 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> setValue(<span class="keyword">const</span> XMLCh *value) = 0;
00135
00144 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMElement.html">DOMElement</a> *getOwnerElement() <span class="keyword">const </span>= 0;
00146
00157 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> isId() <span class="keyword">const </span>= 0;
00158
00159
00166 <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMTypeInfo.html">DOMTypeInfo</a> * getSchemaTypeInfo() <span class="keyword">const </span>= 0;
00167
00169
00170 };
00171
00172 XERCES_CPP_NAMESPACE_END
00173
00174 <span class="preprocessor">#endif</span>
00175 <span class="preprocessor"></span>
00176
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -5,39 +5,25 @@
<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.5.5 -->
<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="classes.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>
<div class="contents">
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<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>
<p>
<div class="dynheader">
Include dependency graph for DOMAttr.hpp:</div>
<div class="dynsection">
<p><center><img src="DOMAttr_8hpp__incl.png" border="0" usemap="#DOMAttr.hpp_map" alt=""></center>
Include dependency graph for DOMAttr.hpp:<p><center><img src="DOMAttr_8hpp__incl.png" border="0" usemap="#DOMAttr.hpp_map" alt="Include dependency graph"></center>
<map name="DOMAttr.hpp_map">
<area shape="rect" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="71,82,255,106"></map>
</div>
<area href="DOMNode_8hpp.html" shape="rect" coords="71,81,257,105" alt="">
</map>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<p><center><img src="DOMAttr_8hpp__dep__incl.png" border="0" usemap="#DOMAttr.hppdep_map" alt=""></center>
This graph shows which files directly or indirectly include this file:<p><center><img src="DOMAttr_8hpp__dep__incl.png" border="0" usemap="#DOMAttr.hppdep_map" alt="Included by dependency graph"></center>
<map name="DOMAttr.hppdep_map">
<area shape="rect" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="5,81,80,105"><area shape="rect" href="StDOMNode_8hpp.html" title="StDOMNode.hpp" alt="" coords="104,81,224,105"></map>
</div>
<area href="DOM_8hpp.html" shape="rect" coords="5,7,83,31" alt="">
<area href="StDOMNode_8hpp.html" shape="rect" coords="107,7,227,31" alt="">
</map>
<p>
<a href="DOMAttr_8hpp-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
@ -48,30 +34,37 @@ This graph shows which files directly or indirectly include this file:</div>
<tr><td colspan="2"><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap 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 class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMAttr.html">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"><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMAttr_8hpp.html#871264c7a5d636ab012da635e4545a50">XERCESC_INCLUDE_GUARD_DOMATTR_HPP</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMAttr_8hpp.html#a0">XERCESC_INCLUDE_GUARD_DOMATTR_HPP</a></td></tr>
</table>
<hr><h2>Define Documentation</h2>
<a class="anchor" name="871264c7a5d636ab012da635e4545a50"></a><!-- doxytag: member="DOMAttr.hpp::XERCESC_INCLUDE_GUARD_DOMATTR_HPP" ref="871264c7a5d636ab012da635e4545a50" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<a class="anchor" name="a0" doxytag="DOMAttr.hpp::XERCESC_INCLUDE_GUARD_DOMATTR_HPP"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMATTR_HPP </td>
<td class="md" nowrap valign="top">#define XERCESC_INCLUDE_GUARD_DOMATTR_HPP </td>
</tr>
</table>
</div>
<div class="memdoc">
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:35 2009 for XQilla DOM Level 3 API by&nbsp;
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -1,2 +1,3 @@
<area shape="rect" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="5,81,80,105">
<area shape="rect" href="$StDOMNode_8hpp.html" title="StDOMNode.hpp" alt="" coords="104,81,224,105">
base referer
rect $DOM_8hpp.html 5,7 83,31
rect $StDOMNode_8hpp.html 107,7 227,31

View file

@ -1 +1 @@
905f925cd06c0404898e31b447b2b577
dcade3eae43c1abfa701086c1c860545

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1 +1,2 @@
<area shape="rect" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="71,82,255,106">
base referer
rect $DOMNode_8hpp.html 71,81 257,105

View file

@ -1 +1 @@
3a0ac23b607e4e9ccd712d57bf9ce290
41fab252ef3f0529938cc18e837fb642

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -5,77 +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.5.5 -->
<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="classes.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>
<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>
<a name="l00005"></a>00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
<a name="l00006"></a>00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
<a name="l00007"></a>00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
<a name="l00008"></a>00008 <span class="comment"> * </span>
<a name="l00009"></a>00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00010"></a>00010 <span class="comment"> * </span>
<a name="l00011"></a>00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
<a name="l00012"></a>00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
<a name="l00013"></a>00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<a name="l00014"></a>00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
<a name="l00015"></a>00015 <span class="comment"> * limitations under the License.</span>
<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: DOMCDATASection.hpp 527149 2007-04-10 14:56:39Z amassari $</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_DOMCDATASECTION_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMCDATASection_8hpp.html#4563901bd1769e956b86213be9c1034f">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;<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...">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#3f7b9d233119d52b9e57a5574f6a73d5">00072</a> <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>() {}
<a name="l00073"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html#12b7f586c89bcba93ce005df507543c3">00073</a> <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">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...">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>
<a name="l00087"></a>00087 <span class="comment">// All constructors are hidden, just the destructor is available</span>
<a name="l00088"></a>00088 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00095"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html#205c3e2c7fec34acacb645c3fcfe1d0a">00095</a> <span class="comment"></span> <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>() {};
<a name="l00097"></a>00097
<a name="l00098"></a>00098 };
<a name="l00099"></a>00099
<a name="l00100"></a>00100 XERCES_CPP_NAMESPACE_END
<a name="l00101"></a>00101
<a name="l00102"></a>00102 <span class="preprocessor">#endif</span>
<a name="l00103"></a>00103 <span class="preprocessor"></span>
<a name="l00104"></a>00104
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:34 2009 for XQilla DOM Level 3 API by&nbsp;
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<h1>DOMCDATASection.hpp</h1><a href="DOMCDATASection_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
00008 <span class="comment"> * </span>
00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
00010 <span class="comment"> * </span>
00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
00015 <span class="comment"> * limitations under the License.</span>
00016 <span class="comment"> */</span>
00017
00018 <span class="comment">/*</span>
00019 <span class="comment"> * $Id: DOMCDATASection.hpp 527149 2007-04-10 14:56:39Z amassari $</span>
00020 <span class="comment"> */</span>
00021
00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMCDATASection_8hpp.html#a0">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP</span>
00024 <span class="preprocessor"></span>
00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMText_8hpp.html">xercesc/dom/DOMText.hpp</a>&gt;</span>
00027
00028 XERCES_CPP_NAMESPACE_BEGIN
00029
00030
<a name="l00065"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html">00065</a> <span class="keyword">class </span>CDOM_EXPORT DOMCDATASection: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMText.html">DOMText</a> {
00066 <span class="keyword">protected</span>:
00067 <span class="comment">// -----------------------------------------------------------------------</span>
00068 <span class="comment">// Hidden constructors</span>
00069 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00072"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html#z61_0">00072</a> <span class="comment"></span> DOMCDATASection() {}
<a name="l00073"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html#z61_1">00073</a> DOMCDATASection(<span class="keyword">const</span> DOMCDATASection &amp;other) : <a class="code" href="classxercesc_1_1DOMText.html">DOMText</a>(other) {}
00075
00076 <span class="keyword">private</span>:
00077 <span class="comment">// -----------------------------------------------------------------------</span>
00078 <span class="comment">// Unimplemented constructors and operators</span>
00079 <span class="comment">// -----------------------------------------------------------------------</span>
00082 <span class="comment"></span> DOMCDATASection &amp; operator = (<span class="keyword">const</span> DOMCDATASection &amp;);
00084
00085 <span class="keyword">public</span>:
00086 <span class="comment">// -----------------------------------------------------------------------</span>
00087 <span class="comment">// All constructors are hidden, just the destructor is available</span>
00088 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00095"></a><a class="code" href="classxercesc_1_1DOMCDATASection.html#z65_0">00095</a> <span class="comment"></span> <span class="keyword">virtual</span> ~DOMCDATASection() {};
00097
00098 };
00099
00100 XERCES_CPP_NAMESPACE_END
00101
00102 <span class="preprocessor">#endif</span>
00103 <span class="preprocessor"></span>
00104
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -5,39 +5,26 @@
<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.5.5 -->
<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="classes.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>
<div class="contents">
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<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>
<p>
<div class="dynheader">
Include dependency graph for DOMCDATASection.hpp:</div>
<div class="dynsection">
<p><center><img src="DOMCDATASection_8hpp__incl.png" border="0" usemap="#DOMCDATASection.hpp_map" alt=""></center>
Include dependency graph for DOMCDATASection.hpp:<p><center><img src="DOMCDATASection_8hpp__incl.png" border="0" usemap="#DOMCDATASection.hpp_map" alt="Include dependency graph"></center>
<map name="DOMCDATASection.hpp_map">
<area shape="rect" href="DOMText_8hpp.html" title="xercesc/dom/DOMText.hpp" alt="" coords="60,81,239,105"><area shape="rect" href="DOMCharacterData_8hpp.html" title="xercesc/dom/DOMCharacterData.hpp" alt="" coords="111,156,348,180"><area shape="rect" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="161,231,345,255"></map>
</div>
<area href="DOMText_8hpp.html" shape="rect" coords="60,231,241,255" alt="">
<area href="DOMCharacterData_8hpp.html" shape="rect" coords="111,156,353,180" alt="">
<area href="DOMNode_8hpp.html" shape="rect" coords="161,81,348,105" alt="">
</map>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<p><center><img src="DOMCDATASection_8hpp__dep__incl.png" border="0" usemap="#DOMCDATASection.hppdep_map" alt=""></center>
This graph shows which files directly or indirectly include this file:<p><center><img src="DOMCDATASection_8hpp__dep__incl.png" border="0" usemap="#DOMCDATASection.hppdep_map" alt="Included by dependency graph"></center>
<map name="DOMCDATASection.hppdep_map">
<area shape="rect" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="48,81,123,105"></map>
</div>
<area href="DOM_8hpp.html" shape="rect" coords="48,7,125,31" alt="">
</map>
<p>
<a href="DOMCDATASection_8hpp-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
@ -50,28 +37,35 @@ This graph shows which files directly or indirectly include this file:</div>
<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"><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMCDATASection_8hpp.html#4563901bd1769e956b86213be9c1034f">XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMCDATASection_8hpp.html#a0">XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP</a></td></tr>
</table>
<hr><h2>Define Documentation</h2>
<a class="anchor" name="4563901bd1769e956b86213be9c1034f"></a><!-- doxytag: member="DOMCDATASection.hpp::XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP" ref="4563901bd1769e956b86213be9c1034f" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<a class="anchor" name="a0" doxytag="DOMCDATASection.hpp::XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP </td>
<td class="md" nowrap valign="top">#define XERCESC_INCLUDE_GUARD_DOMCDATASECTION_HPP </td>
</tr>
</table>
</div>
<div class="memdoc">
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:35 2009 for XQilla DOM Level 3 API by&nbsp;
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:49 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -1 +1,2 @@
<area shape="rect" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="48,81,123,105">
base referer
rect $DOM_8hpp.html 48,7 125,31

View file

@ -1 +1 @@
cb65010ca4535f39c237b483afcbc985
d3e188a85e3f74f01cfaa628fe10e54a

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 836 B

View file

@ -1,3 +1,4 @@
<area shape="rect" href="$DOMText_8hpp.html" title="xercesc/dom/DOMText.hpp" alt="" coords="60,81,239,105">
<area shape="rect" href="$DOMCharacterData_8hpp.html" title="xercesc/dom/DOMCharacterData.hpp" alt="" coords="111,156,348,180">
<area shape="rect" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="161,231,345,255">
base referer
rect $DOMText_8hpp.html 60,231 241,255
rect $DOMCharacterData_8hpp.html 111,156 353,180
rect $DOMNode_8hpp.html 161,81 348,105

View file

@ -1 +1 @@
6917361da4f34950a41f4a9ccb00b560
2f0bb66b5faece3c6fd5456ba178e1b7

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -5,106 +5,98 @@
<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.5.5 -->
<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="classes.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>
<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>
<a name="l00005"></a>00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
<a name="l00006"></a>00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
<a name="l00007"></a>00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
<a name="l00008"></a>00008 <span class="comment"> * </span>
<a name="l00009"></a>00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00010"></a>00010 <span class="comment"> * </span>
<a name="l00011"></a>00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
<a name="l00012"></a>00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
<a name="l00013"></a>00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<a name="l00014"></a>00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
<a name="l00015"></a>00015 <span class="comment"> * limitations under the License.</span>
<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: DOMCharacterData.hpp 527149 2007-04-10 14:56:39Z amassari $</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_DOMCHARACTERDATA_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMCharacterData_8hpp.html#985d5bdd980306dfd7a774d78cf40c7f">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;<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...">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#82779b668e65db522db4fb869d97b638">00053</a> <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>() {}
<a name="l00054"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html#6f78323a15eba8db2d1c272d845d4025">00054</a> <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">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...">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>
<a name="l00068"></a>00068 <span class="comment">// All constructors are hidden, just the destructor is available</span>
<a name="l00069"></a>00069 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00076"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html#87c14260fd61df4815a452cde4e936dd">00076</a> <span class="comment"></span> <span class="keyword">virtual</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="l00078"></a>00078
<a name="l00079"></a>00079 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00080"></a>00080 <span class="comment">// Virtual DOMCharacterData interface</span>
<a name="l00081"></a>00081 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00084"></a>00084 <span class="comment"></span> <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00085"></a>00085 <span class="comment">// Getter methods</span>
<a name="l00086"></a>00086 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00100"></a>00100 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * getData() <span class="keyword">const</span> = 0;
<a name="l00101"></a>00101
<a name="l00110"></a>00110 <span class="keyword">virtual</span> XMLSize_t getLength() <span class="keyword">const</span> = 0;
<a name="l00111"></a>00111
<a name="l00126"></a>00126 <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * substringData(XMLSize_t offset,
<a name="l00127"></a>00127 XMLSize_t count) <span class="keyword">const</span> = 0;
<a name="l00128"></a>00128
<a name="l00129"></a>00129 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00130"></a>00130 <span class="comment">// String methods</span>
<a name="l00131"></a>00131 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00142"></a>00142 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> appendData(<span class="keyword">const</span> XMLCh *arg) = 0;
<a name="l00143"></a>00143
<a name="l00155"></a>00155 <span class="keyword">virtual</span> <span class="keywordtype">void</span> insertData(XMLSize_t offset, <span class="keyword">const</span> XMLCh *arg) = 0;
<a name="l00156"></a>00156
<a name="l00174"></a>00174 <span class="keyword">virtual</span> <span class="keywordtype">void</span> deleteData(XMLSize_t offset,
<a name="l00175"></a>00175 XMLSize_t count) = 0;
<a name="l00176"></a>00176
<a name="l00196"></a>00196 <span class="keyword">virtual</span> <span class="keywordtype">void</span> replaceData(XMLSize_t offset,
<a name="l00197"></a>00197 XMLSize_t count,
<a name="l00198"></a>00198 <span class="keyword">const</span> XMLCh *arg) = 0;
<a name="l00199"></a>00199
<a name="l00206"></a>00206 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setData(<span class="keyword">const</span> XMLCh *data) = 0;
<a name="l00208"></a>00208
<a name="l00209"></a>00209 };
<a name="l00210"></a>00210
<a name="l00211"></a>00211 XERCES_CPP_NAMESPACE_END
<a name="l00212"></a>00212
<a name="l00213"></a>00213 <span class="preprocessor">#endif</span>
<a name="l00214"></a>00214 <span class="preprocessor"></span>
<a name="l00215"></a>00215
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:34 2009 for XQilla DOM Level 3 API by&nbsp;
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<h1>DOMCharacterData.hpp</h1><a href="DOMCharacterData_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
00008 <span class="comment"> * </span>
00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
00010 <span class="comment"> * </span>
00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
00015 <span class="comment"> * limitations under the License.</span>
00016 <span class="comment"> */</span>
00017
00018 <span class="comment">/*</span>
00019 <span class="comment"> * $Id: DOMCharacterData.hpp 527149 2007-04-10 14:56:39Z amassari $</span>
00020 <span class="comment"> */</span>
00021
00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMCharacterData_8hpp.html#a0">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP</span>
00024 <span class="preprocessor"></span>
00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNode_8hpp.html">xercesc/dom/DOMNode.hpp</a>&gt;</span>
00027
00028 XERCES_CPP_NAMESPACE_BEGIN
00029
00030
<a name="l00046"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html">00046</a> <span class="keyword">class </span>CDOM_EXPORT DOMCharacterData: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html">DOMNode</a> {
00047 <span class="keyword">protected</span>:
00048 <span class="comment">// -----------------------------------------------------------------------</span>
00049 <span class="comment">// Hidden constructors</span>
00050 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00053"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html#z67_0">00053</a> <span class="comment"></span> DOMCharacterData() {}
<a name="l00054"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html#z67_1">00054</a> DOMCharacterData(<span class="keyword">const</span> DOMCharacterData &amp;other) : <a class="code" href="classxercesc_1_1DOMNode.html">DOMNode</a>(other) {}
00056
00057 <span class="keyword">private</span>:
00058 <span class="comment">// -----------------------------------------------------------------------</span>
00059 <span class="comment">// Unimplemented constructors and operators</span>
00060 <span class="comment">// -----------------------------------------------------------------------</span>
00063 <span class="comment"></span> DOMCharacterData &amp; operator = (<span class="keyword">const</span> DOMCharacterData &amp;);
00065
00066 <span class="keyword">public</span>:
00067 <span class="comment">// -----------------------------------------------------------------------</span>
00068 <span class="comment">// All constructors are hidden, just the destructor is available</span>
00069 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00076"></a><a class="code" href="classxercesc_1_1DOMCharacterData.html#z71_0">00076</a> <span class="comment"></span> <span class="keyword">virtual</span> ~DOMCharacterData() {};
00078
00079 <span class="comment">// -----------------------------------------------------------------------</span>
00080 <span class="comment">// Virtual DOMCharacterData interface</span>
00081 <span class="comment">// -----------------------------------------------------------------------</span>
00084 <span class="comment"></span> <span class="comment">// -----------------------------------------------------------------------</span>
00085 <span class="comment">// Getter methods</span>
00086 <span class="comment">// -----------------------------------------------------------------------</span>
00100 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * getData() <span class="keyword">const </span>= 0;
00101
00110 <span class="keyword">virtual</span> XMLSize_t getLength() <span class="keyword">const </span>= 0;
00111
00126 <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh * substringData(XMLSize_t offset,
00127 XMLSize_t count) <span class="keyword">const </span>= 0;
00128
00129 <span class="comment">// -----------------------------------------------------------------------</span>
00130 <span class="comment">// String methods</span>
00131 <span class="comment">// -----------------------------------------------------------------------</span>
00142 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> appendData(<span class="keyword">const</span> XMLCh *arg) = 0;
00143
00155 <span class="keyword">virtual</span> <span class="keywordtype">void</span> insertData(XMLSize_t offset, <span class="keyword">const</span> XMLCh *arg) = 0;
00156
00174 <span class="keyword">virtual</span> <span class="keywordtype">void</span> deleteData(XMLSize_t offset,
00175 XMLSize_t count) = 0;
00176
00196 <span class="keyword">virtual</span> <span class="keywordtype">void</span> replaceData(XMLSize_t offset,
00197 XMLSize_t count,
00198 <span class="keyword">const</span> XMLCh *arg) = 0;
00199
00206 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setData(<span class="keyword">const</span> XMLCh *data) = 0;
00208
00209 };
00210
00211 XERCES_CPP_NAMESPACE_END
00212
00213 <span class="preprocessor">#endif</span>
00214 <span class="preprocessor"></span>
00215
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -5,39 +5,27 @@
<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.5.5 -->
<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="classes.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>
<div class="contents">
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<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>
<p>
<div class="dynheader">
Include dependency graph for DOMCharacterData.hpp:</div>
<div class="dynsection">
<p><center><img src="DOMCharacterData_8hpp__incl.png" border="0" usemap="#DOMCharacterData.hpp_map" alt=""></center>
Include dependency graph for DOMCharacterData.hpp:<p><center><img src="DOMCharacterData_8hpp__incl.png" border="0" usemap="#DOMCharacterData.hpp_map" alt="Include dependency graph"></center>
<map name="DOMCharacterData.hpp_map">
<area shape="rect" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="71,82,255,106"></map>
</div>
<area href="DOMNode_8hpp.html" shape="rect" coords="71,81,257,105" alt="">
</map>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<p><center><img src="DOMCharacterData_8hpp__dep__incl.png" border="0" usemap="#DOMCharacterData.hppdep_map" alt=""></center>
This graph shows which files directly or indirectly include this file:<p><center><img src="DOMCharacterData_8hpp__dep__incl.png" border="0" usemap="#DOMCharacterData.hppdep_map" alt="Included by dependency graph"></center>
<map name="DOMCharacterData.hppdep_map">
<area shape="rect" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="125,230,200,254"><area shape="rect" href="DOMComment_8hpp.html" title="DOMComment.hpp" alt="" coords="47,156,177,180"><area shape="rect" href="DOMText_8hpp.html" title="DOMText.hpp" alt="" coords="164,81,265,105"><area shape="rect" href="DOMCDATASection_8hpp.html" title="DOMCDATASection.hpp" alt="" coords="252,156,412,180"></map>
</div>
<area href="DOM_8hpp.html" shape="rect" coords="59,7,136,31" alt="">
<area href="DOMComment_8hpp.html" shape="rect" coords="20,156,153,180" alt="">
<area href="DOMText_8hpp.html" shape="rect" coords="177,156,279,180" alt="">
<area href="DOMCDATASection_8hpp.html" shape="rect" coords="160,81,323,105" alt="">
</map>
<p>
<a href="DOMCharacterData_8hpp-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
@ -48,30 +36,37 @@ This graph shows which files directly or indirectly include this file:</div>
<tr><td colspan="2"><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap 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 class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMCharacterData.html">DOMCharacterData</a></code> interface extends <a class="el" href="classxercesc_1_1DOMNode.html">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"><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMCharacterData_8hpp.html#985d5bdd980306dfd7a774d78cf40c7f">XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMCharacterData_8hpp.html#a0">XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP</a></td></tr>
</table>
<hr><h2>Define Documentation</h2>
<a class="anchor" name="985d5bdd980306dfd7a774d78cf40c7f"></a><!-- doxytag: member="DOMCharacterData.hpp::XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP" ref="985d5bdd980306dfd7a774d78cf40c7f" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<a class="anchor" name="a0" doxytag="DOMCharacterData.hpp::XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP </td>
<td class="md" nowrap valign="top">#define XERCESC_INCLUDE_GUARD_DOMCHARACTERDATA_HPP </td>
</tr>
</table>
</div>
<div class="memdoc">
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:35 2009 for XQilla DOM Level 3 API by&nbsp;
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:49 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -1,4 +1,5 @@
<area shape="rect" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="125,230,200,254">
<area shape="rect" href="$DOMComment_8hpp.html" title="DOMComment.hpp" alt="" coords="47,156,177,180">
<area shape="rect" href="$DOMText_8hpp.html" title="DOMText.hpp" alt="" coords="164,81,265,105">
<area shape="rect" href="$DOMCDATASection_8hpp.html" title="DOMCDATASection.hpp" alt="" coords="252,156,412,180">
base referer
rect $DOM_8hpp.html 59,7 136,31
rect $DOMComment_8hpp.html 20,156 153,180
rect $DOMText_8hpp.html 177,156 279,180
rect $DOMCDATASection_8hpp.html 160,81 323,105

View file

@ -1 +1 @@
d7ec84ca5f8ee103a0289f5638a4282e
472c8c86ff545ffdd14aa08d234c2ef6

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1 +1,2 @@
<area shape="rect" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="71,82,255,106">
base referer
rect $DOMNode_8hpp.html 71,81 257,105

View file

@ -1 +1 @@
e31ebe49a973d62f1fc7a8abeddebfb8
d716525c70f88109949fe61b19eca90a

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -5,75 +5,67 @@
<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.5.5 -->
<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="classes.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>
<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>
<a name="l00005"></a>00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
<a name="l00006"></a>00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
<a name="l00007"></a>00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
<a name="l00008"></a>00008 <span class="comment"> * </span>
<a name="l00009"></a>00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00010"></a>00010 <span class="comment"> * </span>
<a name="l00011"></a>00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
<a name="l00012"></a>00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
<a name="l00013"></a>00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<a name="l00014"></a>00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
<a name="l00015"></a>00015 <span class="comment"> * limitations under the License.</span>
<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: DOMComment.hpp 527149 2007-04-10 14:56:39Z amassari $</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_DOMCOMMENT_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMComment_8hpp.html#c22e5cda89ad00538fc22e8f4c8c72b9">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;<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...">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>
<a name="l00043"></a>00043 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00046"></a><a class="code" href="classxercesc_1_1DOMComment.html#304811e9805bd63eeea3539115b42a63">00046</a> <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>() {};
<a name="l00048"></a>00048
<a name="l00049"></a>00049 <span class="keyword">private</span>:
<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...">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>
<a name="l00061"></a>00061 <span class="comment">// All constructors are hidden, just the destructor is available</span>
<a name="l00062"></a>00062 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00069"></a><a class="code" href="classxercesc_1_1DOMComment.html#3da004335aefc45db3603a6c5bfd32d6">00069</a> <span class="comment"></span> <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>() {};
<a name="l00071"></a>00071 };
<a name="l00072"></a>00072
<a name="l00073"></a>00073 XERCES_CPP_NAMESPACE_END
<a name="l00074"></a>00074
<a name="l00075"></a>00075 <span class="preprocessor">#endif</span>
<a name="l00076"></a>00076 <span class="preprocessor"></span>
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:34 2009 for XQilla DOM Level 3 API by&nbsp;
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<h1>DOMComment.hpp</h1><a href="DOMComment_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
00008 <span class="comment"> * </span>
00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
00010 <span class="comment"> * </span>
00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
00015 <span class="comment"> * limitations under the License.</span>
00016 <span class="comment"> */</span>
00017
00018 <span class="comment">/*</span>
00019 <span class="comment"> * $Id: DOMComment.hpp 527149 2007-04-10 14:56:39Z amassari $</span>
00020 <span class="comment"> */</span>
00021
00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMComment_8hpp.html#a0">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP</span>
00024 <span class="preprocessor"></span>
00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMCharacterData_8hpp.html">xercesc/dom/DOMCharacterData.hpp</a>&gt;</span>
00027
00028 XERCES_CPP_NAMESPACE_BEGIN
00029
00030
<a name="l00039"></a><a class="code" href="classxercesc_1_1DOMComment.html">00039</a> <span class="keyword">class </span>CDOM_EXPORT DOMComment: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMCharacterData.html">DOMCharacterData</a> {
00040 <span class="keyword">protected</span>:
00041 <span class="comment">// -----------------------------------------------------------------------</span>
00042 <span class="comment">// Hidden constructors</span>
00043 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00046"></a><a class="code" href="classxercesc_1_1DOMComment.html#z75_0">00046</a> <span class="comment"></span> DOMComment() {};
00048
00049 <span class="keyword">private</span>:
00050 <span class="comment">// -----------------------------------------------------------------------</span>
00051 <span class="comment">// Unimplemented constructors and operators</span>
00052 <span class="comment">// -----------------------------------------------------------------------</span>
00055 <span class="comment"></span> DOMComment(<span class="keyword">const</span> DOMComment &amp;);
00056 DOMComment &amp; operator = (<span class="keyword">const</span> DOMComment &amp;);
00058
00059 <span class="keyword">public</span>:
00060 <span class="comment">// -----------------------------------------------------------------------</span>
00061 <span class="comment">// All constructors are hidden, just the destructor is available</span>
00062 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00069"></a><a class="code" href="classxercesc_1_1DOMComment.html#z79_0">00069</a> <span class="comment"></span> <span class="keyword">virtual</span> ~DOMComment() {};
00071 };
00072
00073 XERCES_CPP_NAMESPACE_END
00074
00075 <span class="preprocessor">#endif</span>
00076 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -5,39 +5,25 @@
<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.5.5 -->
<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="classes.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>
<div class="contents">
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<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>
<p>
<div class="dynheader">
Include dependency graph for DOMComment.hpp:</div>
<div class="dynsection">
<p><center><img src="DOMComment_8hpp__incl.png" border="0" usemap="#DOMComment.hpp_map" alt=""></center>
Include dependency graph for DOMComment.hpp:<p><center><img src="DOMComment_8hpp__incl.png" border="0" usemap="#DOMComment.hpp_map" alt="Include dependency graph"></center>
<map name="DOMComment.hpp_map">
<area shape="rect" href="DOMCharacterData_8hpp.html" title="xercesc/dom/DOMCharacterData.hpp" alt="" coords="84,81,321,105"><area shape="rect" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="135,156,319,180"></map>
</div>
<area href="DOMCharacterData_8hpp.html" shape="rect" coords="85,156,328,180" alt="">
<area href="DOMNode_8hpp.html" shape="rect" coords="136,81,323,105" alt="">
</map>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<p><center><img src="DOMComment_8hpp__dep__incl.png" border="0" usemap="#DOMComment.hppdep_map" alt=""></center>
This graph shows which files directly or indirectly include this file:<p><center><img src="DOMComment_8hpp__dep__incl.png" border="0" usemap="#DOMComment.hppdep_map" alt="Included by dependency graph"></center>
<map name="DOMComment.hppdep_map">
<area shape="rect" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="33,81,108,105"></map>
</div>
<area href="DOM_8hpp.html" shape="rect" coords="33,7,111,31" alt="">
</map>
<p>
<a href="DOMComment_8hpp-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
@ -50,28 +36,35 @@ This graph shows which files directly or indirectly include this file:</div>
<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"><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMComment_8hpp.html#c22e5cda89ad00538fc22e8f4c8c72b9">XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMComment_8hpp.html#a0">XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP</a></td></tr>
</table>
<hr><h2>Define Documentation</h2>
<a class="anchor" name="c22e5cda89ad00538fc22e8f4c8c72b9"></a><!-- doxytag: member="DOMComment.hpp::XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP" ref="c22e5cda89ad00538fc22e8f4c8c72b9" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<a class="anchor" name="a0" doxytag="DOMComment.hpp::XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP </td>
<td class="md" nowrap valign="top">#define XERCESC_INCLUDE_GUARD_DOMCOMMENT_HPP </td>
</tr>
</table>
</div>
<div class="memdoc">
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:36 2009 for XQilla DOM Level 3 API by&nbsp;
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:49 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -1 +1,2 @@
<area shape="rect" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="33,81,108,105">
base referer
rect $DOM_8hpp.html 33,7 111,31

View file

@ -1 +1 @@
eaa54534a6edadfe86c29db6e595f1c5
e6e167e786d8fd34880709c00a9ccd45

Binary file not shown.

Before

Width:  |  Height:  |  Size: 945 B

After

Width:  |  Height:  |  Size: 681 B

View file

@ -1,2 +1,3 @@
<area shape="rect" href="$DOMCharacterData_8hpp.html" title="xercesc/dom/DOMCharacterData.hpp" alt="" coords="84,81,321,105">
<area shape="rect" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="135,156,319,180">
base referer
rect $DOMCharacterData_8hpp.html 85,156 328,180
rect $DOMNode_8hpp.html 136,81 323,105

View file

@ -1 +1 @@
2136b6fbf2e79ffed655b8b1f48a565a
7030427318db1f3db1700ab3e67fc719

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -5,99 +5,91 @@
<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.5.5 -->
<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="classes.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>
<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>
<a name="l00005"></a>00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
<a name="l00006"></a>00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
<a name="l00007"></a>00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
<a name="l00008"></a>00008 <span class="comment"> * </span>
<a name="l00009"></a>00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00010"></a>00010 <span class="comment"> * </span>
<a name="l00011"></a>00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
<a name="l00012"></a>00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
<a name="l00013"></a>00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<a name="l00014"></a>00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
<a name="l00015"></a>00015 <span class="comment"> * limitations under the License.</span>
<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><a class="code" href="DOMConfiguration_8hpp.html#c2b8d53ab0e5fb9defc79e956efa5cce">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>
<a name="l00023"></a>00023 <span class="comment">//------------------------------------------------------------------------------------</span>
<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;<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...">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>
<a name="l00354"></a>00354 <span class="comment">// Constructor</span>
<a name="l00355"></a>00355 <span class="comment">//-----------------------------------------------------------------------------------</span>
<a name="l00358"></a><a class="code" href="classxercesc_1_1DOMConfiguration.html#09be28924fe48cc06e65b0365bd0d1eb">00358</a> <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>() {};
<a name="l00360"></a>00360
<a name="l00361"></a>00361 <span class="keyword">private</span>:
<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...">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
<a name="l00373"></a>00373 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00374"></a>00374 <span class="comment">// Setter methods</span>
<a name="l00375"></a>00375 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00376"></a>00376
<a name="l00390"></a>00390 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setParameter(<span class="keyword">const</span> XMLCh* name, <span class="keyword">const</span> <span class="keywordtype">void</span>* value) = 0;
<a name="l00391"></a>00391 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setParameter(<span class="keyword">const</span> XMLCh* name, <span class="keywordtype">bool</span> value) = 0;
<a name="l00392"></a>00392
<a name="l00393"></a>00393 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00394"></a>00394 <span class="comment">// Getter methods</span>
<a name="l00395"></a>00395 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00406"></a>00406 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">void</span>* getParameter(<span class="keyword">const</span> XMLCh* name) <span class="keyword">const</span> = 0;
<a name="l00407"></a>00407
<a name="l00408"></a>00408
<a name="l00409"></a>00409 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00410"></a>00410 <span class="comment">// Query methods</span>
<a name="l00411"></a>00411 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00412"></a>00412
<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...">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>
<a name="l00437"></a>00437 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00444"></a><a class="code" href="classxercesc_1_1DOMConfiguration.html#e5da7bb1ca8475d71596b1aa1771b6fc">00444</a> <span class="comment"></span> <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>() {};
<a name="l00446"></a>00446 };
<a name="l00447"></a>00447
<a name="l00448"></a>00448 XERCES_CPP_NAMESPACE_END
<a name="l00449"></a>00449
<a name="l00450"></a>00450 <span class="preprocessor">#endif </span>
<a name="l00451"></a>00451 <span class="preprocessor"></span>
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:34 2009 for XQilla DOM Level 3 API by&nbsp;
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<h1>DOMConfiguration.hpp</h1><a href="DOMConfiguration_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
00008 <span class="comment"> * </span>
00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
00010 <span class="comment"> * </span>
00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
00015 <span class="comment"> * limitations under the License.</span>
00016 <span class="comment"> */</span>
00017
00018 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP)</span>
<a name="l00019"></a><a class="code" href="DOMConfiguration_8hpp.html#a0">00019</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP</span>
00020 <span class="preprocessor"></span>
00021 <span class="comment">//------------------------------------------------------------------------------------</span>
00022 <span class="comment">// Includes</span>
00023 <span class="comment">//------------------------------------------------------------------------------------</span>
00024
00025 <span class="preprocessor">#include &lt;xercesc/util/XMLString.hpp&gt;</span>
00026 <span class="preprocessor">#include &lt;xercesc/util/RefVectorOf.hpp&gt;</span>
00027 <span class="preprocessor">#include &lt;<a class="code" href="DOMStringList_8hpp.html">xercesc/dom/DOMStringList.hpp</a>&gt;</span>
00028
00029 XERCES_CPP_NAMESPACE_BEGIN
00030
<a name="l00350"></a><a class="code" href="classxercesc_1_1DOMConfiguration.html">00350</a> <span class="keyword">class </span>CDOM_EXPORT DOMConfiguration
00351 {
00352 <span class="keyword">protected</span>:
00353 <span class="comment">//-----------------------------------------------------------------------------------</span>
00354 <span class="comment">// Constructor</span>
00355 <span class="comment">//-----------------------------------------------------------------------------------</span>
<a name="l00358"></a><a class="code" href="classxercesc_1_1DOMConfiguration.html#z81_0">00358</a> <span class="comment"></span> DOMConfiguration() {};
00360
00361 <span class="keyword">private</span>:
00362 <span class="comment">// -----------------------------------------------------------------------</span>
00363 <span class="comment">// Unimplemented constructors and operators</span>
00364 <span class="comment">// -----------------------------------------------------------------------</span>
00367 <span class="comment"></span> DOMConfiguration(<span class="keyword">const</span> DOMConfiguration &amp;);
00368 DOMConfiguration &amp; operator = (<span class="keyword">const</span> DOMConfiguration &amp;);
00370
00371 <span class="keyword">public</span>:
00372
00373 <span class="comment">// -----------------------------------------------------------------------</span>
00374 <span class="comment">// Setter methods</span>
00375 <span class="comment">// -----------------------------------------------------------------------</span>
00376
00390 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setParameter(<span class="keyword">const</span> XMLCh* name, <span class="keyword">const</span> <span class="keywordtype">void</span>* value) = 0;
00391 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setParameter(<span class="keyword">const</span> XMLCh* name, <span class="keywordtype">bool</span> value) = 0;
00392
00393 <span class="comment">// -----------------------------------------------------------------------</span>
00394 <span class="comment">// Getter methods</span>
00395 <span class="comment">// -----------------------------------------------------------------------</span>
00406 <span class="comment"></span> <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">void</span>* getParameter(<span class="keyword">const</span> XMLCh* name) <span class="keyword">const </span>= 0;
00407
00408
00409 <span class="comment">// -----------------------------------------------------------------------</span>
00410 <span class="comment">// Query methods</span>
00411 <span class="comment">// -----------------------------------------------------------------------</span>
00412
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;
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;
00424
00433 <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMStringList.html">DOMStringList</a>* getParameterNames() <span class="keyword">const </span>= 0;
00434
00435 <span class="comment">// -----------------------------------------------------------------------</span>
00436 <span class="comment">// All constructors are hidden, just the destructor is available</span>
00437 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00444"></a><a class="code" href="classxercesc_1_1DOMConfiguration.html#z85_0">00444</a> <span class="comment"></span> <span class="keyword">virtual</span> ~DOMConfiguration() {};
00446 };
00447
00448 XERCES_CPP_NAMESPACE_END
00449
00450 <span class="preprocessor">#endif </span>
00451 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -5,40 +5,27 @@
<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.5.5 -->
<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="classes.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>
<div class="contents">
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<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;<a class="el" href="DOMStringList_8hpp-source.html">xercesc/dom/DOMStringList.hpp</a>&gt;</code><br>
<p>
<div class="dynheader">
Include dependency graph for DOMConfiguration.hpp:</div>
<div class="dynsection">
<p><center><img src="DOMConfiguration_8hpp__incl.png" border="0" usemap="#DOMConfiguration.hpp_map" alt=""></center>
Include dependency graph for DOMConfiguration.hpp:<p><center><img src="DOMConfiguration_8hpp__incl.png" border="0" usemap="#DOMConfiguration.hpp_map" alt="Include dependency graph"></center>
<map name="DOMConfiguration.hpp_map">
<area shape="rect" href="DOMStringList_8hpp.html" title="xercesc/dom/DOMStringList.hpp" alt="" coords="419,82,629,106"></map>
</div>
<area href="DOMStringList_8hpp.html" shape="rect" coords="421,81,632,105" alt="">
</map>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<p><center><img src="DOMConfiguration_8hpp__dep__incl.png" border="0" usemap="#DOMConfiguration.hppdep_map" alt=""></center>
This graph shows which files directly or indirectly include this file:<p><center><img src="DOMConfiguration_8hpp__dep__incl.png" border="0" usemap="#DOMConfiguration.hppdep_map" alt="Included by dependency graph"></center>
<map name="DOMConfiguration.hppdep_map">
<area shape="rect" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="57,156,132,180"><area shape="rect" href="DOMLSParser_8hpp.html" title="DOMLSParser.hpp" alt="" coords="31,82,159,106"><area shape="rect" href="DOMLSSerializer_8hpp.html" title="DOMLSSerializer.hpp" alt="" coords="183,82,327,106"></map>
</div>
<area href="DOM_8hpp.html" shape="rect" coords="45,7,123,31" alt="">
<area href="DOMLSParser_8hpp.html" shape="rect" coords="19,81,149,105" alt="">
<area href="DOMLSSerializer_8hpp.html" shape="rect" coords="173,81,320,105" alt="">
</map>
<p>
<a href="DOMConfiguration_8hpp-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
@ -49,30 +36,37 @@ This graph shows which files directly or indirectly include this file:</div>
<tr><td colspan="2"><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap 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 class="mdescLeft">&nbsp;</td><td class="mdescRight">The <a class="el" href="classxercesc_1_1DOMConfiguration.html">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"><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMConfiguration_8hpp.html#c2b8d53ab0e5fb9defc79e956efa5cce">XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMConfiguration_8hpp.html#a0">XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP</a></td></tr>
</table>
<hr><h2>Define Documentation</h2>
<a class="anchor" name="c2b8d53ab0e5fb9defc79e956efa5cce"></a><!-- doxytag: member="DOMConfiguration.hpp::XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP" ref="c2b8d53ab0e5fb9defc79e956efa5cce" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<a class="anchor" name="a0" doxytag="DOMConfiguration.hpp::XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP </td>
<td class="md" nowrap valign="top">#define XERCESC_INCLUDE_GUARD_DOMCONFIGURATION_HPP </td>
</tr>
</table>
</div>
<div class="memdoc">
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:36 2009 for XQilla DOM Level 3 API by&nbsp;
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:49 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -1,3 +1,4 @@
<area shape="rect" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="57,156,132,180">
<area shape="rect" href="$DOMLSParser_8hpp.html" title="DOMLSParser.hpp" alt="" coords="31,82,159,106">
<area shape="rect" href="$DOMLSSerializer_8hpp.html" title="DOMLSSerializer.hpp" alt="" coords="183,82,327,106">
base referer
rect $DOM_8hpp.html 45,7 123,31
rect $DOMLSParser_8hpp.html 19,81 149,105
rect $DOMLSSerializer_8hpp.html 173,81 320,105

View file

@ -1 +1 @@
3f4825b315f03bdb9749c439f35833b2
f06ffd4a8698f551c96c740c0915b7a7

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -1 +1,2 @@
<area shape="rect" href="$DOMStringList_8hpp.html" title="xercesc/dom/DOMStringList.hpp" alt="" coords="419,82,629,106">
base referer
rect $DOMStringList_8hpp.html 421,81 632,105

View file

@ -1 +1 @@
c35fa7ad1fae682c758668abdacdfd16
1d16db76f8f61d2c3fcec785f11cea66

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -5,75 +5,67 @@
<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.5.5 -->
<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="classes.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>
<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>
<a name="l00005"></a>00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
<a name="l00006"></a>00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
<a name="l00007"></a>00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
<a name="l00008"></a>00008 <span class="comment"> * </span>
<a name="l00009"></a>00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00010"></a>00010 <span class="comment"> * </span>
<a name="l00011"></a>00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
<a name="l00012"></a>00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
<a name="l00013"></a>00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<a name="l00014"></a>00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
<a name="l00015"></a>00015 <span class="comment"> * limitations under the License.</span>
<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="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><a class="code" href="DOMDocumentFragment_8hpp.html#1a38116607825a6d0f95cb726a1f3a14">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;<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...">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>
<a name="l00075"></a>00075 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00078"></a><a class="code" href="classxercesc_1_1DOMDocumentFragment.html#c952c994e94ca3b1135877ab322752a9">00078</a> <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>() {};
<a name="l00080"></a>00080
<a name="l00081"></a>00081 <span class="keyword">private</span>:
<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...">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>
<a name="l00093"></a>00093 <span class="comment">// All constructors are hidden, just the destructor is available</span>
<a name="l00094"></a>00094 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00101"></a><a class="code" href="classxercesc_1_1DOMDocumentFragment.html#050845e1550790659f91dce24509d01f">00101</a> <span class="comment"></span> <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>() {};
<a name="l00103"></a>00103
<a name="l00104"></a>00104 };
<a name="l00105"></a>00105
<a name="l00106"></a>00106 XERCES_CPP_NAMESPACE_END
<a name="l00107"></a>00107
<a name="l00108"></a>00108 <span class="preprocessor">#endif</span>
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:34 2009 for XQilla DOM Level 3 API by&nbsp;
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<h1>DOMDocumentFragment.hpp</h1><a href="DOMDocumentFragment_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
00008 <span class="comment"> * </span>
00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
00010 <span class="comment"> * </span>
00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
00015 <span class="comment"> * limitations under the License.</span>
00016 <span class="comment"> */</span>
00017
00018 <span class="comment">/*</span>
00019 <span class="comment"> * $Id: DOMDocumentFragment.hpp 527149 2007-04-10 14:56:39Z amassari $</span>
00020 <span class="comment"> */</span>
00021
00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMDocumentFragment_8hpp.html#a0">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP</span>
00024 <span class="preprocessor"></span>
00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNode_8hpp.html">xercesc/dom/DOMNode.hpp</a>&gt;</span>
00027
00028 XERCES_CPP_NAMESPACE_BEGIN
00029
00030
<a name="l00071"></a><a class="code" href="classxercesc_1_1DOMDocumentFragment.html">00071</a> <span class="keyword">class </span>CDOM_EXPORT DOMDocumentFragment: <span class="keyword">public</span> <a class="code" href="classxercesc_1_1DOMNode.html">DOMNode</a> {
00072 <span class="keyword">protected</span>:
00073 <span class="comment">// -----------------------------------------------------------------------</span>
00074 <span class="comment">// Hidden constructors</span>
00075 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00078"></a><a class="code" href="classxercesc_1_1DOMDocumentFragment.html#z101_0">00078</a> <span class="comment"></span> DOMDocumentFragment() {};
00080
00081 <span class="keyword">private</span>:
00082 <span class="comment">// -----------------------------------------------------------------------</span>
00083 <span class="comment">// Unimplemented constructors and operators</span>
00084 <span class="comment">// -----------------------------------------------------------------------</span>
00087 <span class="comment"></span> DOMDocumentFragment(<span class="keyword">const</span> DOMDocumentFragment &amp;);
00088 DOMDocumentFragment &amp; operator = (<span class="keyword">const</span> DOMDocumentFragment &amp;);
00090
00091 <span class="keyword">public</span>:
00092 <span class="comment">// -----------------------------------------------------------------------</span>
00093 <span class="comment">// All constructors are hidden, just the destructor is available</span>
00094 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00101"></a><a class="code" href="classxercesc_1_1DOMDocumentFragment.html#z105_0">00101</a> <span class="comment"></span> <span class="keyword">virtual</span> ~DOMDocumentFragment() {};
00103
00104 };
00105
00106 XERCES_CPP_NAMESPACE_END
00107
00108 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -5,39 +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.5.5 -->
<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="classes.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>
<div class="contents">
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<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>
<p>
<div class="dynheader">
Include dependency graph for DOMDocumentFragment.hpp:</div>
<div class="dynsection">
<p><center><img src="DOMDocumentFragment_8hpp__incl.png" border="0" usemap="#DOMDocumentFragment.hpp_map" alt=""></center>
Include dependency graph for DOMDocumentFragment.hpp:<p><center><img src="DOMDocumentFragment_8hpp__incl.png" border="0" usemap="#DOMDocumentFragment.hpp_map" alt="Include dependency graph"></center>
<map name="DOMDocumentFragment.hpp_map">
<area shape="rect" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="73,82,257,106"></map>
</div>
<area href="DOMNode_8hpp.html" shape="rect" coords="75,81,261,105" alt="">
</map>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<p><center><img src="DOMDocumentFragment_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentFragment.hppdep_map" alt=""></center>
This graph shows which files directly or indirectly include this file:<p><center><img src="DOMDocumentFragment_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentFragment.hppdep_map" alt="Included by dependency graph"></center>
<map name="DOMDocumentFragment.hppdep_map">
<area shape="rect" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="63,81,137,105"></map>
</div>
<area href="DOM_8hpp.html" shape="rect" coords="64,7,141,31" alt="">
</map>
<p>
<a href="DOMDocumentFragment_8hpp-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
@ -48,30 +33,37 @@ This graph shows which files directly or indirectly include this file:</div>
<tr><td colspan="2"><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap 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 class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a> is a "lightweight" or "minimal" <a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a> object. <a href="classxercesc_1_1DOMDocumentFragment.html#_details">More...</a><br></td></tr>
<tr><td colspan="2"><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentFragment_8hpp.html#1a38116607825a6d0f95cb726a1f3a14">XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentFragment_8hpp.html#a0">XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP</a></td></tr>
</table>
<hr><h2>Define Documentation</h2>
<a class="anchor" name="1a38116607825a6d0f95cb726a1f3a14"></a><!-- doxytag: member="DOMDocumentFragment.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP" ref="1a38116607825a6d0f95cb726a1f3a14" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<a class="anchor" name="a0" doxytag="DOMDocumentFragment.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP </td>
<td class="md" nowrap valign="top">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTFRAGMENT_HPP </td>
</tr>
</table>
</div>
<div class="memdoc">
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:36 2009 for XQilla DOM Level 3 API by&nbsp;
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:49 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -1 +1,2 @@
<area shape="rect" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="63,81,137,105">
base referer
rect $DOM_8hpp.html 64,7 141,31

View file

@ -1 +1 @@
9bba7f82e8b24fbeb0856eadd87c1623
c7f40ff56d5962bc911df44c07aa27db

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 840 B

View file

@ -1 +1,2 @@
<area shape="rect" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="73,82,257,106">
base referer
rect $DOMNode_8hpp.html 75,81 261,105

View file

@ -1 +1 @@
88ce6c5a2008bc9d5294fa3ada0c4396
0e6bfc1a06a4231d59dbc73023e278f8

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -5,84 +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.5.5 -->
<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="classes.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>
<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>
<a name="l00005"></a>00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
<a name="l00006"></a>00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
<a name="l00007"></a>00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
<a name="l00008"></a>00008 <span class="comment"> * </span>
<a name="l00009"></a>00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00010"></a>00010 <span class="comment"> * </span>
<a name="l00011"></a>00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
<a name="l00012"></a>00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
<a name="l00013"></a>00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<a name="l00014"></a>00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
<a name="l00015"></a>00015 <span class="comment"> * limitations under the License.</span>
<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: DOMDocumentRange.hpp 527149 2007-04-10 14:56:39Z amassari $</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_DOMDOCUMENTRANGE_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMDocumentRange_8hpp.html#120527bc9b34b8b4f63110d2008469c7">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
<a name="l00027"></a>00027 XERCES_CPP_NAMESPACE_BEGIN
<a name="l00028"></a>00028
<a name="l00029"></a>00029
<a name="l00030"></a>00030 <span class="keyword">class </span>DOMRange;
<a name="l00031"></a>00031
<a name="l00032"></a>00032
<a name="l00037"></a><a class="code" href="classxercesc_1_1DOMDocumentRange.html">00037</a> <span class="keyword">class </span>CDOM_EXPORT <a class="code" href="classxercesc_1_1DOMDocumentRange.html">DOMDocumentRange</a> {
<a name="l00038"></a>00038
<a name="l00039"></a>00039 <span class="keyword">protected</span>:
<a name="l00040"></a>00040 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00041"></a>00041 <span class="comment">// Hidden constructors</span>
<a name="l00042"></a>00042 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00045"></a><a class="code" href="classxercesc_1_1DOMDocumentRange.html#450decb1e0bdcd30e6b504ea03910ded">00045</a> <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMDocumentRange.html">DOMDocumentRange</a>() {};
<a name="l00047"></a>00047
<a name="l00048"></a>00048 <span class="keyword">private</span>:
<a name="l00049"></a>00049 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00050"></a>00050 <span class="comment">// Unimplemented constructors and operators</span>
<a name="l00051"></a>00051 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00054"></a>00054 <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMDocumentRange.html">DOMDocumentRange</a>(<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentRange.html">DOMDocumentRange</a> &amp;);
<a name="l00055"></a>00055 <a class="code" href="classxercesc_1_1DOMDocumentRange.html">DOMDocumentRange</a> &amp; operator = (<span class="keyword">const</span> <a class="code" href="classxercesc_1_1DOMDocumentRange.html">DOMDocumentRange</a> &amp;);
<a name="l00057"></a>00057
<a name="l00058"></a>00058 <span class="keyword">public</span>:
<a name="l00059"></a>00059 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00060"></a>00060 <span class="comment">// All constructors are hidden, just the destructor is available</span>
<a name="l00061"></a>00061 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00068"></a><a class="code" href="classxercesc_1_1DOMDocumentRange.html#58368294a3d33f7ed317ab6d599d460f">00068</a> <span class="comment"></span> <span class="keyword">virtual</span> ~<a class="code" href="classxercesc_1_1DOMDocumentRange.html">DOMDocumentRange</a>() {};
<a name="l00070"></a>00070
<a name="l00071"></a>00071 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00072"></a>00072 <span class="comment">// Virtual DOMDocumentRange interface</span>
<a name="l00073"></a>00073 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00087"></a>00087 <span class="comment"></span> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMRange.html">DOMRange</a> *createRange() = 0;
<a name="l00088"></a>00088
<a name="l00090"></a>00090 };
<a name="l00091"></a>00091
<a name="l00092"></a>00092
<a name="l00093"></a>00093 XERCES_CPP_NAMESPACE_END
<a name="l00094"></a>00094
<a name="l00095"></a>00095 <span class="preprocessor">#endif</span>
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:34 2009 for XQilla DOM Level 3 API by&nbsp;
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<h1>DOMDocumentRange.hpp</h1><a href="DOMDocumentRange_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
00008 <span class="comment"> * </span>
00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
00010 <span class="comment"> * </span>
00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
00015 <span class="comment"> * limitations under the License.</span>
00016 <span class="comment"> */</span>
00017
00018 <span class="comment">/*</span>
00019 <span class="comment"> * $Id: DOMDocumentRange.hpp 527149 2007-04-10 14:56:39Z amassari $</span>
00020 <span class="comment">*/</span>
00021
00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMDocumentRange_8hpp.html#a0">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP</span>
00024 <span class="preprocessor"></span>
00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
00026
00027 XERCES_CPP_NAMESPACE_BEGIN
00028
00029
00030 <span class="keyword">class </span>DOMRange;
00031
00032
<a name="l00037"></a><a class="code" href="classxercesc_1_1DOMDocumentRange.html">00037</a> <span class="keyword">class </span>CDOM_EXPORT DOMDocumentRange {
00038
00039 <span class="keyword">protected</span>:
00040 <span class="comment">// -----------------------------------------------------------------------</span>
00041 <span class="comment">// Hidden constructors</span>
00042 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00045"></a><a class="code" href="classxercesc_1_1DOMDocumentRange.html#z107_0">00045</a> <span class="comment"></span> DOMDocumentRange() {};
00047
00048 <span class="keyword">private</span>:
00049 <span class="comment">// -----------------------------------------------------------------------</span>
00050 <span class="comment">// Unimplemented constructors and operators</span>
00051 <span class="comment">// -----------------------------------------------------------------------</span>
00054 <span class="comment"></span> DOMDocumentRange(<span class="keyword">const</span> DOMDocumentRange &amp;);
00055 DOMDocumentRange &amp; operator = (<span class="keyword">const</span> DOMDocumentRange &amp;);
00057
00058 <span class="keyword">public</span>:
00059 <span class="comment">// -----------------------------------------------------------------------</span>
00060 <span class="comment">// All constructors are hidden, just the destructor is available</span>
00061 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00068"></a><a class="code" href="classxercesc_1_1DOMDocumentRange.html#z111_0">00068</a> <span class="comment"></span> <span class="keyword">virtual</span> ~DOMDocumentRange() {};
00070
00071 <span class="comment">// -----------------------------------------------------------------------</span>
00072 <span class="comment">// Virtual DOMDocumentRange interface</span>
00073 <span class="comment">// -----------------------------------------------------------------------</span>
00087 <span class="comment"></span> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMRange.html">DOMRange</a> *createRange() = 0;
00088
00090 };
00091
00092
00093 XERCES_CPP_NAMESPACE_END
00094
00095 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -5,36 +5,21 @@
<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.5.5 -->
<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="classes.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>
<div class="contents">
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<h1>DOMDocumentRange.hpp File Reference</h1><code>#include &lt;xercesc/util/XercesDefs.hpp&gt;</code><br>
<p>
<div class="dynheader">
Include dependency graph for DOMDocumentRange.hpp:</div>
<div class="dynsection">
<p><center><img src="DOMDocumentRange_8hpp__incl.png" border="0" usemap="#DOMDocumentRange.hpp_map" alt=""></center>
</div>
Include dependency graph for DOMDocumentRange.hpp:<p><center><img src="DOMDocumentRange_8hpp__incl.png" border="0" usemap="#DOMDocumentRange.hpp_map" alt="Include dependency graph"></center>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<p><center><img src="DOMDocumentRange_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentRange.hppdep_map" alt=""></center>
This graph shows which files directly or indirectly include this file:<p><center><img src="DOMDocumentRange_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentRange.hppdep_map" alt="Included by dependency graph"></center>
<map name="DOMDocumentRange.hppdep_map">
<area shape="rect" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="53,156,128,180"><area shape="rect" href="DOMDocument_8hpp.html" title="DOMDocument.hpp" alt="" coords="76,82,212,106"></map>
</div>
<area href="DOM_8hpp.html" shape="rect" coords="55,7,132,31" alt="">
<area href="DOMDocument_8hpp.html" shape="rect" coords="77,81,216,105" alt="">
</map>
<p>
<a href="DOMDocumentRange_8hpp-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
@ -46,28 +31,35 @@ This graph shows which files directly or indirectly include this file:</div>
<tr><td class="memItemLeft" nowrap 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"><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentRange_8hpp.html#120527bc9b34b8b4f63110d2008469c7">XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentRange_8hpp.html#a0">XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP</a></td></tr>
</table>
<hr><h2>Define Documentation</h2>
<a class="anchor" name="120527bc9b34b8b4f63110d2008469c7"></a><!-- doxytag: member="DOMDocumentRange.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP" ref="120527bc9b34b8b4f63110d2008469c7" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<a class="anchor" name="a0" doxytag="DOMDocumentRange.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP </td>
<td class="md" nowrap valign="top">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTRANGE_HPP </td>
</tr>
</table>
</div>
<div class="memdoc">
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:37 2009 for XQilla DOM Level 3 API by&nbsp;
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:49 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -1,2 +1,3 @@
<area shape="rect" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="53,156,128,180">
<area shape="rect" href="$DOMDocument_8hpp.html" title="DOMDocument.hpp" alt="" coords="76,82,212,106">
base referer
rect $DOM_8hpp.html 55,7 132,31
rect $DOMDocument_8hpp.html 77,81 216,105

View file

@ -1 +1 @@
2580552d4e3e57e704eab5961cf076f3
e73953f7e613112011306f4a6e1aa3c9

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1 @@
base referer

View file

@ -1 +1 @@
d97acea5fd766d1f2bd724453bf81745
93617f639e271e10be1a82501e6650ab

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -5,94 +5,86 @@
<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.5.5 -->
<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="classes.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>
<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>
<a name="l00005"></a>00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
<a name="l00006"></a>00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
<a name="l00007"></a>00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
<a name="l00008"></a>00008 <span class="comment"> *</span>
<a name="l00009"></a>00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00010"></a>00010 <span class="comment"> *</span>
<a name="l00011"></a>00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
<a name="l00012"></a>00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
<a name="l00013"></a>00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<a name="l00014"></a>00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
<a name="l00015"></a>00015 <span class="comment"> * limitations under the License.</span>
<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: DOMDocumentTraversal.hpp 671894 2008-06-26 13:29:21Z 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_DOMDOCUMENTTRAVERSAL_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMDocumentTraversal_8hpp.html#31aaa3c1a2403e6f0e213f38b2329f1d">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;<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
<a name="l00030"></a>00030
<a name="l00031"></a>00031 <span class="keyword">class </span>DOMNode;
<a name="l00032"></a>00032 <span class="keyword">class </span>DOMNodeIterator;
<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...">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>
<a name="l00051"></a>00051 <span class="comment">// Hidden constructors</span>
<a name="l00052"></a>00052 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00055"></a><a class="code" href="classxercesc_1_1DOMDocumentTraversal.html#1ba56098f393fc234c4ad5f4e02ece87">00055</a> <span class="comment"></span> <a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers...">DOMDocumentTraversal</a>() {};
<a name="l00057"></a>00057
<a name="l00058"></a>00058 <span class="keyword">private</span>:
<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...">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>
<a name="l00070"></a>00070 <span class="comment">// All constructors are hidden, just the destructor is available</span>
<a name="l00071"></a>00071 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00078"></a><a class="code" href="classxercesc_1_1DOMDocumentTraversal.html#ff461a3a7afb61a03a31a860188ace49">00078</a> <span class="comment"></span> <span class="keyword">virtual</span> ~<a class="code" href="classxercesc_1_1DOMDocumentTraversal.html" title="DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers...">DOMDocumentTraversal</a>() {};
<a name="l00080"></a>00080
<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 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...">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
<a name="l00150"></a>00150 };
<a name="l00151"></a>00151
<a name="l00152"></a>00152
<a name="l00153"></a>00153 XERCES_CPP_NAMESPACE_END
<a name="l00154"></a>00154
<a name="l00155"></a>00155 <span class="preprocessor">#endif</span>
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:34 2009 for XQilla DOM Level 3 API by&nbsp;
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<h1>DOMDocumentTraversal.hpp</h1><a href="DOMDocumentTraversal_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
00002 <span class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</span>
00003 <span class="comment"> * contributor license agreements. See the NOTICE file distributed with</span>
00004 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
00005 <span class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</span>
00006 <span class="comment"> * (the "License"); you may not use this file except in compliance with</span>
00007 <span class="comment"> * the License. You may obtain a copy of the License at</span>
00008 <span class="comment"> *</span>
00009 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
00010 <span class="comment"> *</span>
00011 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
00012 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
00013 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
00014 <span class="comment"> * See the License for the specific language governing permissions and</span>
00015 <span class="comment"> * limitations under the License.</span>
00016 <span class="comment"> */</span>
00017
00018 <span class="comment">/*</span>
00019 <span class="comment"> * $Id: DOMDocumentTraversal.hpp 671894 2008-06-26 13:29:21Z borisk $</span>
00020 <span class="comment">*/</span>
00021
00022 <span class="preprocessor">#if !defined(XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP)</span>
<a name="l00023"></a><a class="code" href="DOMDocumentTraversal_8hpp.html#a0">00023</a> <span class="preprocessor"></span><span class="preprocessor">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP</span>
00024 <span class="preprocessor"></span>
00025 <span class="preprocessor">#include &lt;xercesc/util/XercesDefs.hpp&gt;</span>
00026 <span class="preprocessor">#include &lt;<a class="code" href="DOMNodeFilter_8hpp.html">xercesc/dom/DOMNodeFilter.hpp</a>&gt;</span>
00027
00028 XERCES_CPP_NAMESPACE_BEGIN
00029
00030
00031 <span class="keyword">class </span>DOMNode;
00032 <span class="keyword">class </span>DOMNodeIterator;
00033 <span class="keyword">class </span>DOMTreeWalker;
00034
00035
<a name="l00047"></a><a class="code" href="classxercesc_1_1DOMDocumentTraversal.html">00047</a> <span class="keyword">class </span>CDOM_EXPORT DOMDocumentTraversal {
00048
00049 <span class="keyword">protected</span>:
00050 <span class="comment">// -----------------------------------------------------------------------</span>
00051 <span class="comment">// Hidden constructors</span>
00052 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00055"></a><a class="code" href="classxercesc_1_1DOMDocumentTraversal.html#z115_0">00055</a> <span class="comment"></span> DOMDocumentTraversal() {};
00057
00058 <span class="keyword">private</span>:
00059 <span class="comment">// -----------------------------------------------------------------------</span>
00060 <span class="comment">// Unimplemented constructors and operators</span>
00061 <span class="comment">// -----------------------------------------------------------------------</span>
00064 <span class="comment"></span> DOMDocumentTraversal(<span class="keyword">const</span> DOMDocumentTraversal &amp;);
00065 DOMDocumentTraversal &amp; operator = (<span class="keyword">const</span> DOMDocumentTraversal &amp;);
00067
00068 <span class="keyword">public</span>:
00069 <span class="comment">// -----------------------------------------------------------------------</span>
00070 <span class="comment">// All constructors are hidden, just the destructor is available</span>
00071 <span class="comment">// -----------------------------------------------------------------------</span>
<a name="l00078"></a><a class="code" href="classxercesc_1_1DOMDocumentTraversal.html#z119_0">00078</a> <span class="comment"></span> <span class="keyword">virtual</span> ~DOMDocumentTraversal() {};
00080
00081 <span class="comment">// -----------------------------------------------------------------------</span>
00082 <span class="comment">// Virtual DOMDocumentRange interface</span>
00083 <span class="comment">// -----------------------------------------------------------------------</span>
00110 <span class="comment"></span> <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMNodeIterator.html">DOMNodeIterator</a> *createNodeIterator(<a class="code" href="classxercesc_1_1DOMNode.html">DOMNode</a>* root,
00111 DOMNodeFilter::ShowType whatToShow,
00112 <a class="code" href="classxercesc_1_1DOMNodeFilter.html">DOMNodeFilter</a>* filter,
00113 <span class="keywordtype">bool</span> entityReferenceExpansion) = 0;
00144 <span class="keyword">virtual</span> <a class="code" href="classxercesc_1_1DOMTreeWalker.html">DOMTreeWalker</a> *createTreeWalker(<a class="code" href="classxercesc_1_1DOMNode.html">DOMNode</a>* root,
00145 DOMNodeFilter::ShowType whatToShow,
00146 <a class="code" href="classxercesc_1_1DOMNodeFilter.html">DOMNodeFilter</a>* filter,
00147 <span class="keywordtype">bool</span> entityReferenceExpansion) = 0;
00148
00150 };
00151
00152
00153 XERCES_CPP_NAMESPACE_END
00154
00155 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -5,39 +5,26 @@
<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.5.5 -->
<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="classes.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>
<div class="contents">
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<div class="nav">
<a class="el" href="dir_000000.html">xerces-c-3.0.1</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">src</a>&nbsp;/&nbsp;<a class="el" href="dir_000002.html">xercesc</a>&nbsp;/&nbsp;<a class="el" href="dir_000003.html">dom</a></div>
<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>
<p>
<div class="dynheader">
Include dependency graph for DOMDocumentTraversal.hpp:</div>
<div class="dynsection">
<p><center><img src="DOMDocumentTraversal_8hpp__incl.png" border="0" usemap="#DOMDocumentTraversal.hpp_map" alt=""></center>
Include dependency graph for DOMDocumentTraversal.hpp:<p><center><img src="DOMDocumentTraversal_8hpp__incl.png" border="0" usemap="#DOMDocumentTraversal.hpp_map" alt="Include dependency graph"></center>
<map name="DOMDocumentTraversal.hpp_map">
<area shape="rect" href="DOMNodeFilter_8hpp.html" title="xercesc/dom/DOMNodeFilter.hpp" alt="" coords="67,81,280,105"><area shape="rect" href="DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="73,156,257,180"></map>
</div>
<area href="DOMNode_8hpp.html" shape="rect" coords="75,81,261,105" alt="">
<area href="DOMNodeFilter_8hpp.html" shape="rect" coords="68,156,284,180" alt="">
</map>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<p><center><img src="DOMDocumentTraversal_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentTraversal.hppdep_map" alt=""></center>
This graph shows which files directly or indirectly include this file:<p><center><img src="DOMDocumentTraversal_8hpp__dep__incl.png" border="0" usemap="#DOMDocumentTraversal.hppdep_map" alt="Included by dependency graph"></center>
<map name="DOMDocumentTraversal.hppdep_map">
<area shape="rect" href="DOM_8hpp.html" title="DOM.hpp" alt="" coords="61,156,136,180"><area shape="rect" href="DOMDocument_8hpp.html" title="DOMDocument.hpp" alt="" coords="84,82,220,106"></map>
</div>
<area href="DOM_8hpp.html" shape="rect" coords="63,7,140,31" alt="">
<area href="DOMDocument_8hpp.html" shape="rect" coords="85,81,224,105" alt="">
</map>
<p>
<a href="DOMDocumentTraversal_8hpp-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
@ -48,30 +35,37 @@ This graph shows which files directly or indirectly include this file:</div>
<tr><td colspan="2"><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap 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 class="mdescLeft">&nbsp;</td><td class="mdescRight"><code><a class="el" href="classxercesc_1_1DOMDocumentTraversal.html">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"><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentTraversal_8hpp.html#31aaa3c1a2403e6f0e213f38b2329f1d">XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="DOMDocumentTraversal_8hpp.html#a0">XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP</a></td></tr>
</table>
<hr><h2>Define Documentation</h2>
<a class="anchor" name="31aaa3c1a2403e6f0e213f38b2329f1d"></a><!-- doxytag: member="DOMDocumentTraversal.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP" ref="31aaa3c1a2403e6f0e213f38b2329f1d" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<a class="anchor" name="a0" doxytag="DOMDocumentTraversal.hpp::XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="memname">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP </td>
<td class="md" nowrap valign="top">#define XERCESC_INCLUDE_GUARD_DOMDOCUMENTTRAVERSAL_HPP </td>
</tr>
</table>
</div>
<div class="memdoc">
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jan 5 19:54:37 2009 for XQilla DOM Level 3 API by&nbsp;
</td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:49 2009 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
</body>
</html>

View file

@ -1,2 +1,3 @@
<area shape="rect" href="$DOM_8hpp.html" title="DOM.hpp" alt="" coords="61,156,136,180">
<area shape="rect" href="$DOMDocument_8hpp.html" title="DOMDocument.hpp" alt="" coords="84,82,220,106">
base referer
rect $DOM_8hpp.html 63,7 140,31
rect $DOMDocument_8hpp.html 85,81 224,105

View file

@ -1 +1 @@
df59a028c230bcec7552bbcb2a8477e5
03bb37e29cc9ba1d41536decb47835b8

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,2 +1,3 @@
<area shape="rect" href="$DOMNodeFilter_8hpp.html" title="xercesc/dom/DOMNodeFilter.hpp" alt="" coords="67,81,280,105">
<area shape="rect" href="$DOMNode_8hpp.html" title="xercesc/dom/DOMNode.hpp" alt="" coords="73,156,257,180">
base referer
rect $DOMNode_8hpp.html 75,81 261,105
rect $DOMNodeFilter_8hpp.html 68,156 284,180

View file

@ -1 +1 @@
ed7270ca78fbe39018648cd3b07ead36
66e4d50760f98f6f61b000ce0666bdd0

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