diff --git a/ChangeLog b/ChangeLog index 2b15c32c..fce25579 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ XQilla: an XQuery and XPath 2.0 library and command line interpreter. - +version 2.3.3 (2015.07.07): + * Fixed a localization bug parsing floating point numbers. + * Added Visual Studio 2012 projects. + * Added Visual Studio 2008 projects. + * Removed Visual Studio 2005 and 2003 projects. + * Modified to build against Xerces-C 3.1.3. + version 2.3.2 (2015.07.07): * XQilla can now be built with Visual Studios 2013. diff --git a/Makefile.am b/Makefile.am index 61079388..14e10e9e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,7 +17,7 @@ lib_LTLIBRARIES = libxqilla.la # Library version, see http://sourceware.org/autobook/autobook/autobook_91.html # -no-undefined for Cygwin (bug #1639669) -libxqilla_la_LDFLAGS = -version-info 6:0:2 -no-undefined +libxqilla_la_LDFLAGS = -version-info 6:0:3 -no-undefined libxqilla_la_SOURCES = \ src/framework/ReferenceCounted.cpp \ @@ -524,6 +524,18 @@ docs/xqc_header.html \ docs/simple-api \ docs/dom3-api \ docs/xqc-api \ +Win32Projects/VC11/dom-basic.vcxproj \ +Win32Projects/VC11/dom-context-item.vcxproj \ +Win32Projects/VC11/dom-resolver.vcxproj \ +Win32Projects/VC11/simple-basic.vcxproj \ +Win32Projects/VC11/simple-context-item.vcxproj \ +Win32Projects/VC11/xmarkRunner.vcxproj \ +Win32Projects/VC11/xqc-basic.vcxproj \ +Win32Projects/VC11/xqc-context-item.vcxproj \ +Win32Projects/VC11/xqilla.vcxproj \ +Win32Projects/VC11/xqilla_cmd.vcxproj \ +Win32Projects/VC11/xqtsRunner.vcxproj \ +Win32Projects/VC11/XQilla.sln \ Win32Projects/VC10/dom-basic.vcxproj \ Win32Projects/VC10/dom-context-item.vcxproj \ Win32Projects/VC10/dom-resolver.vcxproj \ @@ -536,30 +548,18 @@ Win32Projects/VC10/xqilla.vcxproj \ Win32Projects/VC10/xqilla_cmd.vcxproj \ Win32Projects/VC10/xqtsRunner.vcxproj \ Win32Projects/VC10/XQilla.sln \ -Win32Projects/VC8/dom-basic.vcproj \ -Win32Projects/VC8/dom-context-item.vcproj \ -Win32Projects/VC8/dom-resolver.vcproj \ -Win32Projects/VC8/simple-basic.vcproj \ -Win32Projects/VC8/simple-context-item.vcproj \ -Win32Projects/VC8/xmarkRunner.vcproj \ -Win32Projects/VC8/xqc-basic.vcproj \ -Win32Projects/VC8/xqc-context-item.vcproj \ -Win32Projects/VC8/xqilla.vcproj \ -Win32Projects/VC8/xqilla_cmd.vcproj \ -Win32Projects/VC8/xqtsRunner.vcproj \ -Win32Projects/VC8/XQilla.sln \ -Win32Projects/VC7.1/dom-basic.vcproj \ -Win32Projects/VC7.1/dom-context-item.vcproj \ -Win32Projects/VC7.1/dom-resolver.vcproj \ -Win32Projects/VC7.1/simple-basic.vcproj \ -Win32Projects/VC7.1/simple-context-item.vcproj \ -Win32Projects/VC7.1/xmarkRunner.vcproj \ -Win32Projects/VC7.1/xqc-basic.vcproj \ -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/xqtsRunner.vcproj \ +Win32Projects/VC9/dom-basic.vcproj \ +Win32Projects/VC9/dom-context-item.vcproj \ +Win32Projects/VC9/dom-resolver.vcproj \ +Win32Projects/VC9/simple-basic.vcproj \ +Win32Projects/VC9/simple-context-item.vcproj \ +Win32Projects/VC9/xmarkRunner.vcproj \ +Win32Projects/VC9/xqc-basic.vcproj \ +Win32Projects/VC9/xqc-context-item.vcproj \ +Win32Projects/VC9/xqilla.vcproj \ +Win32Projects/VC9/xqilla_cmd.vcproj \ +Win32Projects/VC9/xqtsRunner.vcproj \ +Win32Projects/VC9/XQilla.sln \ tests/xqts/xqts_testsuite/errors.xml \ tests/xqts/xqts_testsuite/update_errors.xml \ tests/xqts/xqts_testsuite/xsl_errors.xml \ diff --git a/Makefile.in b/Makefile.in index f25ac661..78531563 100644 --- a/Makefile.in +++ b/Makefile.in @@ -513,7 +513,7 @@ lib_LTLIBRARIES = libxqilla.la # Library version, see http://sourceware.org/autobook/autobook/autobook_91.html # -no-undefined for Cygwin (bug #1639669) -libxqilla_la_LDFLAGS = -version-info 6:0:2 -no-undefined +libxqilla_la_LDFLAGS = -version-info 6:0:3 -no-undefined libxqilla_la_SOURCES = \ src/framework/ReferenceCounted.cpp \ src/framework/BaseMemoryManager.cpp \ @@ -1019,6 +1019,18 @@ docs/xqc_header.html \ docs/simple-api \ docs/dom3-api \ docs/xqc-api \ +Win32Projects/VC11/dom-basic.vcxproj \ +Win32Projects/VC11/dom-context-item.vcxproj \ +Win32Projects/VC11/dom-resolver.vcxproj \ +Win32Projects/VC11/simple-basic.vcxproj \ +Win32Projects/VC11/simple-context-item.vcxproj \ +Win32Projects/VC11/xmarkRunner.vcxproj \ +Win32Projects/VC11/xqc-basic.vcxproj \ +Win32Projects/VC11/xqc-context-item.vcxproj \ +Win32Projects/VC11/xqilla.vcxproj \ +Win32Projects/VC11/xqilla_cmd.vcxproj \ +Win32Projects/VC11/xqtsRunner.vcxproj \ +Win32Projects/VC11/XQilla.sln \ Win32Projects/VC10/dom-basic.vcxproj \ Win32Projects/VC10/dom-context-item.vcxproj \ Win32Projects/VC10/dom-resolver.vcxproj \ @@ -1031,30 +1043,18 @@ Win32Projects/VC10/xqilla.vcxproj \ Win32Projects/VC10/xqilla_cmd.vcxproj \ Win32Projects/VC10/xqtsRunner.vcxproj \ Win32Projects/VC10/XQilla.sln \ -Win32Projects/VC8/dom-basic.vcproj \ -Win32Projects/VC8/dom-context-item.vcproj \ -Win32Projects/VC8/dom-resolver.vcproj \ -Win32Projects/VC8/simple-basic.vcproj \ -Win32Projects/VC8/simple-context-item.vcproj \ -Win32Projects/VC8/xmarkRunner.vcproj \ -Win32Projects/VC8/xqc-basic.vcproj \ -Win32Projects/VC8/xqc-context-item.vcproj \ -Win32Projects/VC8/xqilla.vcproj \ -Win32Projects/VC8/xqilla_cmd.vcproj \ -Win32Projects/VC8/xqtsRunner.vcproj \ -Win32Projects/VC8/XQilla.sln \ -Win32Projects/VC7.1/dom-basic.vcproj \ -Win32Projects/VC7.1/dom-context-item.vcproj \ -Win32Projects/VC7.1/dom-resolver.vcproj \ -Win32Projects/VC7.1/simple-basic.vcproj \ -Win32Projects/VC7.1/simple-context-item.vcproj \ -Win32Projects/VC7.1/xmarkRunner.vcproj \ -Win32Projects/VC7.1/xqc-basic.vcproj \ -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/xqtsRunner.vcproj \ +Win32Projects/VC9/dom-basic.vcproj \ +Win32Projects/VC9/dom-context-item.vcproj \ +Win32Projects/VC9/dom-resolver.vcproj \ +Win32Projects/VC9/simple-basic.vcproj \ +Win32Projects/VC9/simple-context-item.vcproj \ +Win32Projects/VC9/xmarkRunner.vcproj \ +Win32Projects/VC9/xqc-basic.vcproj \ +Win32Projects/VC9/xqc-context-item.vcproj \ +Win32Projects/VC9/xqilla.vcproj \ +Win32Projects/VC9/xqilla_cmd.vcproj \ +Win32Projects/VC9/xqtsRunner.vcproj \ +Win32Projects/VC9/XQilla.sln \ tests/xqts/xqts_testsuite/errors.xml \ tests/xqts/xqts_testsuite/update_errors.xml \ tests/xqts/xqts_testsuite/xsl_errors.xml \ diff --git a/README b/README index 2cfe84a7..07d26dd5 100644 --- a/README +++ b/README @@ -3,15 +3,15 @@ This is XQilla, a C++ implementation of XQuery and XPath 2.0 based on Xerces-C. Build Instructions ------------------ -1. Download a source distribution of Xerces-C 3.1.2 +1. Download a source distribution of Xerces-C 3.1.3 2. Build Xerces-C -cd xerces-c-3.1.2/ +cd xerces-c-3.1.3/ ./configure make 4. Build XQilla cd xqilla/ -./configure --with-xerces=`pwd`/../xerces-c-3.1.2/ +./configure --with-xerces=`pwd`/../xerces-c-3.1.3/ make diff --git a/Win32Projects/VC10/dom-basic.vcxproj b/Win32Projects/VC10/dom-basic.vcxproj index 8258d771..bcd47e43 100644 --- a/Win32Projects/VC10/dom-basic.vcxproj +++ b/Win32Projects/VC10/dom-basic.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Release Win32 @@ -21,10 +17,6 @@ Release x64 - - Release - IA64 - {6672DE96-EA92-44A2-900E-6868A86FB044} @@ -34,31 +26,25 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -75,12 +61,6 @@ - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -104,16 +84,6 @@ false dom-basic .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)dom-basic\ - false - dom-basic - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)dom-basic\ - false - dom-basic - .exe @@ -137,7 +107,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-basic.pdb true @@ -169,7 +139,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-basic.pdb true @@ -200,7 +170,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-basic.pdb true @@ -232,70 +202,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)dom-basic.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)dom-basic.pch - $(OutDir)dom-basic/ - $(OutDir)dom-basic/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)dom-basic.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)dom-basic.pch - $(OutDir)dom-basic/ - $(OutDir)dom-basic/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-basic.pdb true diff --git a/Win32Projects/VC10/dom-context-item.vcxproj b/Win32Projects/VC10/dom-context-item.vcxproj index 16468039..1ee7acf2 100644 --- a/Win32Projects/VC10/dom-context-item.vcxproj +++ b/Win32Projects/VC10/dom-context-item.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Release Win32 @@ -21,10 +17,6 @@ Release x64 - - Release - IA64 - {E1A71F82-696D-4439-B647-CE04D75E49DC} @@ -34,31 +26,25 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -75,12 +61,6 @@ - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -104,16 +84,6 @@ false dom-context-item .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)dom-context-item\ - false - dom-context-item - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)dom-context-item\ - false - dom-context-item - .exe @@ -137,7 +107,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-context-item.pdb true @@ -169,7 +139,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-context-item.pdb true @@ -200,7 +170,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-context-item.pdb true @@ -232,70 +202,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)dom-context-item.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)dom-context-item.pch - $(OutDir)dom-context-item/ - $(OutDir)dom-context-item/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)dom-context-item.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)dom-context-item.pch - $(OutDir)dom-context-item/ - $(OutDir)dom-context-item/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-context-item.pdb true diff --git a/Win32Projects/VC10/dom-resolver.vcxproj b/Win32Projects/VC10/dom-resolver.vcxproj index 70747507..9bfd7bb2 100644 --- a/Win32Projects/VC10/dom-resolver.vcxproj +++ b/Win32Projects/VC10/dom-resolver.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Release Win32 @@ -21,10 +17,6 @@ Release x64 - - Release - IA64 - {31B7B9AA-109C-4B71-ADA6-274A6420969E} @@ -34,31 +26,25 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -75,12 +61,6 @@ - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -104,16 +84,6 @@ false dom-resolver .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)dom-resolver\ - false - dom-resolver - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)dom-resolver\ - false - dom-resolver - .exe @@ -137,7 +107,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-resolver.pdb true @@ -169,7 +139,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-resolver.pdb true @@ -200,7 +170,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-resolver.pdb true @@ -232,70 +202,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)dom-resolver.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)dom-resolver.pch - $(OutDir)dom-resolver/ - $(OutDir)dom-resolver/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)dom-resolver.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)dom-resolver.pch - $(OutDir)dom-resolver/ - $(OutDir)dom-resolver/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)dom-resolver.pdb true diff --git a/Win32Projects/VC10/simple-basic.vcxproj b/Win32Projects/VC10/simple-basic.vcxproj index b2c6d266..4368c839 100644 --- a/Win32Projects/VC10/simple-basic.vcxproj +++ b/Win32Projects/VC10/simple-basic.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Release Win32 @@ -21,10 +17,6 @@ Release x64 - - Release - IA64 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573} @@ -34,31 +26,25 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -75,12 +61,6 @@ - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -104,16 +84,6 @@ false simple-basic .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)simple-basic\ - false - simple-basic - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)simple-basic\ - false - simple-basic - .exe @@ -137,7 +107,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)simple-basic.pdb true @@ -169,7 +139,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)simple-basic.pdb true @@ -200,7 +170,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)simple-basic.pdb true @@ -232,70 +202,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)simple-basic.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)simple-basic.pch - $(OutDir)simple-basic/ - $(OutDir)simple-basic/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)simple-basic.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)simple-basic.pch - $(OutDir)simple-basic/ - $(OutDir)simple-basic/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)simple-basic.pdb true diff --git a/Win32Projects/VC10/simple-context-item.vcxproj b/Win32Projects/VC10/simple-context-item.vcxproj index 45a3d311..72dddb21 100644 --- a/Win32Projects/VC10/simple-context-item.vcxproj +++ b/Win32Projects/VC10/simple-context-item.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Release Win32 @@ -21,10 +17,6 @@ Release x64 - - Release - IA64 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0} @@ -34,31 +26,25 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -75,12 +61,6 @@ - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -104,16 +84,6 @@ false simple-context-item .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)simple-context-item\ - false - simple-context-item - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)simple-context-item\ - false - simple-context-item - .exe @@ -137,7 +107,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)simple-context-item.pdb true @@ -169,7 +139,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)simple-context-item.pdb true @@ -200,7 +170,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)simple-context-item.pdb true @@ -232,70 +202,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)simple-context-item.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)simple-context-item.pch - $(OutDir)simple-context-item/ - $(OutDir)simple-context-item/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)simple-context-item.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)simple-context-item.pch - $(OutDir)simple-context-item/ - $(OutDir)simple-context-item/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)simple-context-item.pdb true diff --git a/Win32Projects/VC10/xmarkRunner.vcxproj b/Win32Projects/VC10/xmarkRunner.vcxproj index cad88706..54702433 100644 --- a/Win32Projects/VC10/xmarkRunner.vcxproj +++ b/Win32Projects/VC10/xmarkRunner.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Release Win32 @@ -21,10 +17,6 @@ Release x64 - - Release - IA64 - {619264FA-3730-43C4-A903-0EAA453527AC} @@ -34,31 +26,25 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -75,12 +61,6 @@ - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -104,16 +84,6 @@ false xmarkRunner .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)xmarkRunner\ - false - xmarkRunner - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)xmarkRunner\ - false - xmarkRunner - .exe @@ -137,7 +107,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xmarkRunner.pdb true @@ -169,7 +139,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xmarkRunner.pdb true @@ -200,7 +170,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xmarkRunner.pdb true @@ -232,70 +202,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xmarkRunner.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)xmarkRunner.pch - $(OutDir)xmarkRunner/ - $(OutDir)xmarkRunner/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xmarkRunner.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)xmarkRunner.pch - $(OutDir)xmarkRunner/ - $(OutDir)xmarkRunner/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xmarkRunner.pdb true diff --git a/Win32Projects/VC10/xqc-basic.vcxproj b/Win32Projects/VC10/xqc-basic.vcxproj index 60c23181..85eed8a3 100644 --- a/Win32Projects/VC10/xqc-basic.vcxproj +++ b/Win32Projects/VC10/xqc-basic.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Release Win32 @@ -21,10 +17,6 @@ Release x64 - - Release - IA64 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB574} @@ -34,31 +26,25 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -75,12 +61,6 @@ - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -104,16 +84,6 @@ false xqc-basic .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)xqc-basic\ - false - xqc-basic - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)xqc-basic\ - false - xqc-basic - .exe @@ -137,7 +107,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqc-basic.pdb true @@ -169,7 +139,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqc-basic.pdb true @@ -200,7 +170,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqc-basic.pdb true @@ -232,70 +202,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqc-basic.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)xqc-basic.pch - $(OutDir)xqc-basic/ - $(OutDir)xqc-basic/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqc-basic.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)xqc-basic.pch - $(OutDir)xqc-basic/ - $(OutDir)xqc-basic/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqc-basic.pdb true diff --git a/Win32Projects/VC10/xqc-context-item.vcxproj b/Win32Projects/VC10/xqc-context-item.vcxproj index d5250bc2..1c85c779 100644 --- a/Win32Projects/VC10/xqc-context-item.vcxproj +++ b/Win32Projects/VC10/xqc-context-item.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Release Win32 @@ -21,10 +17,6 @@ Release x64 - - Release - IA64 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB575} @@ -34,31 +26,25 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -75,12 +61,6 @@ - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -104,16 +84,6 @@ false xqc-context-item .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)xqc-context-item\ - false - xqc-context-item - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)xqc-context-item\ - false - xqc-context-item - .exe @@ -137,7 +107,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqc-context-item.pdb true @@ -169,7 +139,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqc-context-item.pdb true @@ -200,7 +170,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqc-context-item.pdb true @@ -232,70 +202,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqc-context-item.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)xqc-context-item.pch - $(OutDir)xqc-context-item/ - $(OutDir)xqc-context-item/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqc-context-item.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)xqc-context-item.pch - $(OutDir)xqc-context-item/ - $(OutDir)xqc-context-item/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqc-context-item.pdb true diff --git a/Win32Projects/VC10/xqilla.vcxproj b/Win32Projects/VC10/xqilla.vcxproj index 2572a633..3bd9de12 100644 --- a/Win32Projects/VC10/xqilla.vcxproj +++ b/Win32Projects/VC10/xqilla.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Static Debug Win32 @@ -21,10 +17,6 @@ Static Debug x64 - - Static Debug - IA64 - Release Win32 @@ -33,10 +25,6 @@ Release x64 - - Release - IA64 - Static Release Win32 @@ -45,10 +33,6 @@ Static Release x64 - - Static Release - IA64 - {63E85107-41E0-4FC7-8083-40E85861B426} @@ -58,61 +42,49 @@ DynamicLibrary false MultiByte + v100 StaticLibrary false MultiByte + v100 DynamicLibrary false MultiByte + v100 StaticLibrary false MultiByte + v100 DynamicLibrary false MultiByte + v100 StaticLibrary false MultiByte + v100 DynamicLibrary false MultiByte + v100 StaticLibrary false MultiByte - - - DynamicLibrary - false - MultiByte - - - StaticLibrary - false - MultiByte - - - DynamicLibrary - false - MultiByte - - - StaticLibrary - false - MultiByte + v100 @@ -141,18 +113,6 @@ - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -196,26 +156,6 @@ false xqilla23s .lib - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)xqilla\ - false - xqilla23d - .dll - ..\..\build\windows\VC10\$(Platform)\Static Debug\ - ./$(OutDir)xqilla\ - false - xqilla23sd - .lib - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)xqilla\ - false - xqilla23 - .dll - ..\..\build\windows\VC10\$(Platform)\Static Release\ - ./$(OutDir)xqilla\ - false - xqilla23s - .lib @@ -239,7 +179,7 @@ /machine:x86 %(AdditionalOptions) xerces-c_3d.lib;%(AdditionalDependencies) - ../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + ../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla23d.pdb true @@ -296,7 +236,7 @@ /machine:x86 %(AdditionalOptions) xerces-c_3.lib;%(AdditionalDependencies) - ../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + ../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla23.pdb true @@ -353,7 +293,7 @@ /machine:x64 %(AdditionalOptions) xerces-c_3d.lib;%(AdditionalDependencies) - ../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + ../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla23d.pdb true @@ -410,7 +350,7 @@ /machine:x64 %(AdditionalOptions) xerces-c_3.lib;%(AdditionalDependencies) - ../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + ../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla23.pdb true @@ -445,120 +385,6 @@ /machine:x64 %(AdditionalOptions) - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)xqilla.pch - $(OutDir)xqilla/ - $(OutDir)xqilla/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xerces-c_3d.lib;%(AdditionalDependencies) - ../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqilla23d.pdb - true - true - $(OutDir)xqilla23d.lib - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY;%(PreprocessorDefinitions) - true - MultiThreadedDebug - - - ./$(OutDir)xqilla.pch - $(OutDir)xqilla/ - $(OutDir)xqilla/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - $(OutDir)$(TargetName)$(TargetExt) - /machine:IA64 %(AdditionalOptions) - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)xqilla.pch - $(OutDir)xqilla/ - $(OutDir)xqilla/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xerces-c_3.lib;%(AdditionalDependencies) - ../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqilla23.pdb - true - true - $(OutDir)xqilla23.lib - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY;%(PreprocessorDefinitions) - true - MultiThreaded - true - - - ./$(OutDir)xqilla.pch - $(OutDir)xqilla/ - $(OutDir)xqilla/ - Level3 - true - ProgramDatabase - Default - - - $(OutDir)$(TargetName)$(TargetExt) - /machine:IA64 %(AdditionalOptions) - - diff --git a/Win32Projects/VC10/xqilla_cmd.vcxproj b/Win32Projects/VC10/xqilla_cmd.vcxproj index 2def0225..72efb9a0 100644 --- a/Win32Projects/VC10/xqilla_cmd.vcxproj +++ b/Win32Projects/VC10/xqilla_cmd.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Static Debug Win32 @@ -21,10 +17,6 @@ Static Debug x64 - - Static Debug - IA64 - Release Win32 @@ -33,10 +25,6 @@ Release x64 - - Release - IA64 - Static Release Win32 @@ -45,10 +33,6 @@ Static Release x64 - - Static Release - IA64 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2} @@ -58,61 +42,49 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -141,18 +113,6 @@ - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -196,26 +156,6 @@ false xqilla .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)xqilla_cmd\ - false - xqilla - .exe - ..\..\build\windows\VC10\$(Platform)\Static Debug\ - ./$(OutDir)xqilla_cmd\ - false - xqilla - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)xqilla_cmd\ - false - xqilla - .exe - ..\..\build\windows\VC10\$(Platform)\Static Release\ - ./$(OutDir)xqilla_cmd\ - false - xqilla - .exe @@ -239,7 +179,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla.pdb true @@ -270,7 +210,7 @@ /machine:x86 %(AdditionalOptions) xqilla23sd.lib;xerces-c_static_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla.pdb true @@ -302,7 +242,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla.pdb true @@ -334,7 +274,7 @@ /machine:x86 %(AdditionalOptions) xqilla23s.lib;xerces-c_static_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla.pdb true @@ -365,7 +305,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla.pdb true @@ -396,7 +336,7 @@ /machine:x64 %(AdditionalOptions) xqilla23sd.lib;xerces-c_static_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla.pdb true @@ -428,7 +368,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla.pdb true @@ -460,133 +400,7 @@ /machine:x64 %(AdditionalOptions) xqilla23s.lib;xerces-c_static_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqilla.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)xqilla_cmd.pch - $(OutDir)xqilla/ - $(OutDir)xqilla/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqilla.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions) - true - MultiThreadedDebug - - - ./$(OutDir)xqilla_cmd.pch - $(OutDir)xqilla/ - $(OutDir)xqilla/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23sd.lib;xerces-c_static_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqilla.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)xqilla_cmd.pch - $(OutDir)xqilla/ - $(OutDir)xqilla/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqilla.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions) - true - MultiThreaded - true - - - ./$(OutDir)xqilla_cmd.pch - $(OutDir)xqilla/ - $(OutDir)xqilla/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23s.lib;xerces-c_static_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqilla.pdb true diff --git a/Win32Projects/VC10/xqtsRunner.vcxproj b/Win32Projects/VC10/xqtsRunner.vcxproj index 20785ed3..17b35895 100644 --- a/Win32Projects/VC10/xqtsRunner.vcxproj +++ b/Win32Projects/VC10/xqtsRunner.vcxproj @@ -9,10 +9,6 @@ Debug x64 - - Debug - IA64 - Release Win32 @@ -21,10 +17,6 @@ Release x64 - - Release - IA64 - {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3} @@ -34,31 +26,25 @@ Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte + v100 Application false MultiByte - - - Application - false - MultiByte - - - Application - false - MultiByte + v100 @@ -75,12 +61,6 @@ - - - - - - <_ProjectFileVersion>10.0.30319.1 @@ -104,16 +84,6 @@ false xqtsRunner .exe - ..\..\build\windows\VC10\$(Platform)\Debug\ - ./$(OutDir)xqtsRunner\ - false - xqtsRunner - .exe - ..\..\build\windows\VC10\$(Platform)\Release\ - ./$(OutDir)xqtsRunner\ - false - xqtsRunner - .exe @@ -137,7 +107,7 @@ /machine:x86 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqtsRunner.pdb true @@ -169,7 +139,7 @@ /machine:x86 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqtsRunner.pdb true @@ -200,7 +170,7 @@ /machine:x64 %(AdditionalOptions) xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqtsRunner.pdb true @@ -232,70 +202,7 @@ /machine:x64 %(AdditionalOptions) xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../../../xerces-c-src/Build/Win64/VC8/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqtsRunner.pdb - true - true - true - NotSet - - - - - Disabled - true - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - - - ./$(OutDir)xqtsRunner.pch - $(OutDir)xqtsRunner/ - $(OutDir)xqtsRunner/ - Level3 - true - ProgramDatabase - EnableFastChecks - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) - $(OutDir)$(TargetName)$(TargetExt) - $(OutDir)xqtsRunner.pdb - true - true - true - NotSet - - - - - MaxSpeed - true - OnlyExplicitInline - ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - true - - - ./$(OutDir)xqtsRunner.pch - $(OutDir)xqtsRunner/ - $(OutDir)xqtsRunner/ - Level3 - true - ProgramDatabase - Default - - - /machine:IA64 %(AdditionalOptions) - xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) - $(OutDir);../lib;%(AdditionalLibraryDirectories) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) $(OutDir)$(TargetName)$(TargetExt) $(OutDir)xqtsRunner.pdb true diff --git a/Win32Projects/VC11/XQilla.sln b/Win32Projects/VC11/XQilla.sln new file mode 100644 index 00000000..53e19a1d --- /dev/null +++ b/Win32Projects/VC11/XQilla.sln @@ -0,0 +1,206 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla", "xqilla.vcxproj", "{63E85107-41E0-4FC7-8083-40E85861B426}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla_cmd", "xqilla_cmd.vcxproj", "{44F4673C-C971-4085-8750-3BA0D7FE6FD2}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqtsRunner", "xqtsRunner.vcxproj", "{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xmarkRunner", "xmarkRunner.vcxproj", "{619264FA-3730-43C4-A903-0EAA453527AC}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple-context-item", "simple-context-item.vcxproj", "{55BEA039-4B29-4909-902A-9DD4BEADBCD0}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple-basic", "simple-basic.vcxproj", "{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-resolver", "dom-resolver.vcxproj", "{31B7B9AA-109C-4B71-ADA6-274A6420969E}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-context-item", "dom-context-item.vcxproj", "{E1A71F82-696D-4439-B647-CE04D75E49DC}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-basic", "dom-basic.vcxproj", "{6672DE96-EA92-44A2-900E-6868A86FB044}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + Static Debug|Win32 = Static Debug|Win32 + Static Debug|x64 = Static Debug|x64 + Static Release|Win32 = Static Release|Win32 + Static Release|x64 = Static Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|Win32.ActiveCfg = Debug|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|Win32.Build.0 = Debug|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|x64.ActiveCfg = Debug|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|x64.Build.0 = Debug|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Release|Win32.ActiveCfg = Release|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Release|Win32.Build.0 = Release|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Release|x64.ActiveCfg = Release|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Release|x64.Build.0 = Release|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|Win32.ActiveCfg = Static Debug|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|Win32.Build.0 = Static Debug|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|x64.ActiveCfg = Static Debug|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|x64.Build.0 = Static Debug|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|Win32.ActiveCfg = Static Release|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|Win32.Build.0 = Static Release|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|x64.ActiveCfg = Static Release|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|x64.Build.0 = Static Release|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|Win32.ActiveCfg = Debug|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|Win32.Build.0 = Debug|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|x64.ActiveCfg = Debug|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|x64.Build.0 = Debug|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|Win32.ActiveCfg = Release|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|Win32.Build.0 = Release|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|x64.ActiveCfg = Release|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|x64.Build.0 = Release|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|Win32.ActiveCfg = Static Debug|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|Win32.Build.0 = Static Debug|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|x64.ActiveCfg = Static Debug|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|x64.Build.0 = Static Debug|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|Win32.ActiveCfg = Static Release|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|Win32.Build.0 = Static Release|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|x64.ActiveCfg = Static Release|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|x64.Build.0 = Static Release|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|Win32.ActiveCfg = Debug|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|Win32.Build.0 = Debug|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|x64.ActiveCfg = Debug|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|x64.Build.0 = Debug|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|Win32.ActiveCfg = Release|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|Win32.Build.0 = Release|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|x64.ActiveCfg = Release|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|x64.Build.0 = Release|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|Win32.Build.0 = Debug|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|x64.ActiveCfg = Debug|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|x64.Build.0 = Debug|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|Win32.ActiveCfg = Release|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|Win32.Build.0 = Release|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|x64.ActiveCfg = Release|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|x64.Build.0 = Release|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Debug|Win32.ActiveCfg = Debug|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Debug|Win32.Build.0 = Debug|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Debug|x64.ActiveCfg = Debug|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Debug|x64.Build.0 = Debug|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Release|Win32.ActiveCfg = Release|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Release|Win32.Build.0 = Release|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Release|x64.ActiveCfg = Release|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Release|x64.Build.0 = Release|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|Win32.Build.0 = Debug|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|x64.ActiveCfg = Debug|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|x64.Build.0 = Debug|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|Win32.ActiveCfg = Release|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|Win32.Build.0 = Release|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|x64.ActiveCfg = Release|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|x64.Build.0 = Release|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|Win32.ActiveCfg = Debug|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|Win32.Build.0 = Debug|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|x64.ActiveCfg = Debug|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|x64.Build.0 = Debug|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|Win32.ActiveCfg = Release|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|Win32.Build.0 = Release|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|x64.ActiveCfg = Release|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|x64.Build.0 = Release|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|Win32.Build.0 = Debug|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|x64.ActiveCfg = Debug|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|x64.Build.0 = Debug|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|Win32.ActiveCfg = Release|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|Win32.Build.0 = Release|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|x64.ActiveCfg = Release|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|x64.Build.0 = Release|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|Win32.ActiveCfg = Debug|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|Win32.Build.0 = Debug|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|x64.ActiveCfg = Debug|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|x64.Build.0 = Debug|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|Win32.ActiveCfg = Release|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|Win32.Build.0 = Release|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|x64.ActiveCfg = Release|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|x64.Build.0 = Release|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|Win32.Build.0 = Debug|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|x64.ActiveCfg = Debug|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|x64.Build.0 = Debug|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|Win32.ActiveCfg = Release|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|Win32.Build.0 = Release|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|x64.ActiveCfg = Release|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|x64.Build.0 = Release|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|Win32.ActiveCfg = Debug|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|Win32.Build.0 = Debug|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|x64.ActiveCfg = Debug|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|x64.Build.0 = Debug|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|Win32.ActiveCfg = Release|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|Win32.Build.0 = Release|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|x64.ActiveCfg = Release|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|x64.Build.0 = Release|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|Win32.Build.0 = Debug|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|x64.ActiveCfg = Debug|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|x64.Build.0 = Debug|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|Win32.ActiveCfg = Release|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|Win32.Build.0 = Release|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|x64.ActiveCfg = Release|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|x64.Build.0 = Release|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|Win32.ActiveCfg = Debug|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|Win32.Build.0 = Debug|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|x64.ActiveCfg = Debug|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|x64.Build.0 = Debug|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|Win32.ActiveCfg = Release|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|Win32.Build.0 = Release|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|x64.ActiveCfg = Release|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|x64.Build.0 = Release|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|Win32.Build.0 = Debug|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|x64.ActiveCfg = Debug|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|x64.Build.0 = Debug|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|Win32.ActiveCfg = Release|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|Win32.Build.0 = Release|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|x64.ActiveCfg = Release|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|x64.Build.0 = Release|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|Win32.ActiveCfg = Debug|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|Win32.Build.0 = Debug|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|x64.ActiveCfg = Debug|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|x64.Build.0 = Debug|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|Win32.ActiveCfg = Release|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|Win32.Build.0 = Release|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|x64.ActiveCfg = Release|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|x64.Build.0 = Release|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|Win32.Build.0 = Debug|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|x64.ActiveCfg = Debug|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|x64.Build.0 = Debug|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|Win32.ActiveCfg = Release|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|Win32.Build.0 = Release|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|x64.ActiveCfg = Release|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Win32Projects/VC11/dom-basic.vcxproj b/Win32Projects/VC11/dom-basic.vcxproj new file mode 100644 index 00000000..14e25afe --- /dev/null +++ b/Win32Projects/VC11/dom-basic.vcxproj @@ -0,0 +1,224 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {6672DE96-EA92-44A2-900E-6868A86FB044} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)dom-basic\ + false + dom-basic + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)dom-basic\ + false + dom-basic + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)dom-basic\ + false + dom-basic + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)dom-basic\ + false + dom-basic + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)dom-basic.pch + $(OutDir)dom-basic/ + $(OutDir)dom-basic/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-basic.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)dom-basic.pch + $(OutDir)dom-basic/ + $(OutDir)dom-basic/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-basic.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)dom-basic.pch + $(OutDir)dom-basic/ + $(OutDir)dom-basic/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-basic.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)dom-basic.pch + $(OutDir)dom-basic/ + $(OutDir)dom-basic/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-basic.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/dom-context-item.vcxproj b/Win32Projects/VC11/dom-context-item.vcxproj new file mode 100644 index 00000000..7f826633 --- /dev/null +++ b/Win32Projects/VC11/dom-context-item.vcxproj @@ -0,0 +1,224 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {E1A71F82-696D-4439-B647-CE04D75E49DC} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)dom-context-item\ + false + dom-context-item + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)dom-context-item\ + false + dom-context-item + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)dom-context-item\ + false + dom-context-item + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)dom-context-item\ + false + dom-context-item + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)dom-context-item.pch + $(OutDir)dom-context-item/ + $(OutDir)dom-context-item/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-context-item.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)dom-context-item.pch + $(OutDir)dom-context-item/ + $(OutDir)dom-context-item/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-context-item.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)dom-context-item.pch + $(OutDir)dom-context-item/ + $(OutDir)dom-context-item/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-context-item.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)dom-context-item.pch + $(OutDir)dom-context-item/ + $(OutDir)dom-context-item/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-context-item.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/dom-resolver.vcxproj b/Win32Projects/VC11/dom-resolver.vcxproj new file mode 100644 index 00000000..138c6ba4 --- /dev/null +++ b/Win32Projects/VC11/dom-resolver.vcxproj @@ -0,0 +1,224 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {31B7B9AA-109C-4B71-ADA6-274A6420969E} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)dom-resolver\ + false + dom-resolver + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)dom-resolver\ + false + dom-resolver + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)dom-resolver\ + false + dom-resolver + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)dom-resolver\ + false + dom-resolver + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)dom-resolver.pch + $(OutDir)dom-resolver/ + $(OutDir)dom-resolver/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-resolver.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)dom-resolver.pch + $(OutDir)dom-resolver/ + $(OutDir)dom-resolver/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-resolver.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)dom-resolver.pch + $(OutDir)dom-resolver/ + $(OutDir)dom-resolver/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-resolver.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)dom-resolver.pch + $(OutDir)dom-resolver/ + $(OutDir)dom-resolver/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)dom-resolver.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/simple-basic.vcxproj b/Win32Projects/VC11/simple-basic.vcxproj new file mode 100644 index 00000000..02cd7726 --- /dev/null +++ b/Win32Projects/VC11/simple-basic.vcxproj @@ -0,0 +1,224 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)simple-basic\ + false + simple-basic + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)simple-basic\ + false + simple-basic + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)simple-basic\ + false + simple-basic + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)simple-basic\ + false + simple-basic + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)simple-basic.pch + $(OutDir)simple-basic/ + $(OutDir)simple-basic/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)simple-basic.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)simple-basic.pch + $(OutDir)simple-basic/ + $(OutDir)simple-basic/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)simple-basic.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)simple-basic.pch + $(OutDir)simple-basic/ + $(OutDir)simple-basic/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)simple-basic.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)simple-basic.pch + $(OutDir)simple-basic/ + $(OutDir)simple-basic/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)simple-basic.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/simple-context-item.vcxproj b/Win32Projects/VC11/simple-context-item.vcxproj new file mode 100644 index 00000000..0ef17064 --- /dev/null +++ b/Win32Projects/VC11/simple-context-item.vcxproj @@ -0,0 +1,224 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {55BEA039-4B29-4909-902A-9DD4BEADBCD0} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)simple-context-item\ + false + simple-context-item + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)simple-context-item\ + false + simple-context-item + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)simple-context-item\ + false + simple-context-item + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)simple-context-item\ + false + simple-context-item + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)simple-context-item.pch + $(OutDir)simple-context-item/ + $(OutDir)simple-context-item/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)simple-context-item.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)simple-context-item.pch + $(OutDir)simple-context-item/ + $(OutDir)simple-context-item/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)simple-context-item.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)simple-context-item.pch + $(OutDir)simple-context-item/ + $(OutDir)simple-context-item/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)simple-context-item.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)simple-context-item.pch + $(OutDir)simple-context-item/ + $(OutDir)simple-context-item/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)simple-context-item.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/xmarkRunner.vcxproj b/Win32Projects/VC11/xmarkRunner.vcxproj new file mode 100644 index 00000000..91c57cd3 --- /dev/null +++ b/Win32Projects/VC11/xmarkRunner.vcxproj @@ -0,0 +1,224 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {619264FA-3730-43C4-A903-0EAA453527AC} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xmarkRunner\ + false + xmarkRunner + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xmarkRunner\ + false + xmarkRunner + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xmarkRunner\ + false + xmarkRunner + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xmarkRunner\ + false + xmarkRunner + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xmarkRunner.pch + $(OutDir)xmarkRunner/ + $(OutDir)xmarkRunner/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xmarkRunner.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xmarkRunner.pch + $(OutDir)xmarkRunner/ + $(OutDir)xmarkRunner/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xmarkRunner.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xmarkRunner.pch + $(OutDir)xmarkRunner/ + $(OutDir)xmarkRunner/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xmarkRunner.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xmarkRunner.pch + $(OutDir)xmarkRunner/ + $(OutDir)xmarkRunner/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xmarkRunner.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/xqc-basic.vcxproj b/Win32Projects/VC11/xqc-basic.vcxproj new file mode 100644 index 00000000..046f770d --- /dev/null +++ b/Win32Projects/VC11/xqc-basic.vcxproj @@ -0,0 +1,224 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {C03914F5-AA13-4B1C-A4B0-8FD6560AB574} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqc-basic\ + false + xqc-basic + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqc-basic\ + false + xqc-basic + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqc-basic\ + false + xqc-basic + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqc-basic\ + false + xqc-basic + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqc-basic.pch + $(OutDir)xqc-basic/ + $(OutDir)xqc-basic/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqc-basic.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqc-basic.pch + $(OutDir)xqc-basic/ + $(OutDir)xqc-basic/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqc-basic.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqc-basic.pch + $(OutDir)xqc-basic/ + $(OutDir)xqc-basic/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqc-basic.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqc-basic.pch + $(OutDir)xqc-basic/ + $(OutDir)xqc-basic/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqc-basic.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/xqc-context-item.vcxproj b/Win32Projects/VC11/xqc-context-item.vcxproj new file mode 100644 index 00000000..34dc5ff2 --- /dev/null +++ b/Win32Projects/VC11/xqc-context-item.vcxproj @@ -0,0 +1,224 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {C03914F5-AA13-4B1C-A4B0-8FD6560AB575} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqc-context-item\ + false + xqc-context-item + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqc-context-item\ + false + xqc-context-item + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqc-context-item\ + false + xqc-context-item + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqc-context-item\ + false + xqc-context-item + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqc-context-item.pch + $(OutDir)xqc-context-item/ + $(OutDir)xqc-context-item/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqc-context-item.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqc-context-item.pch + $(OutDir)xqc-context-item/ + $(OutDir)xqc-context-item/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqc-context-item.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqc-context-item.pch + $(OutDir)xqc-context-item/ + $(OutDir)xqc-context-item/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqc-context-item.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqc-context-item.pch + $(OutDir)xqc-context-item/ + $(OutDir)xqc-context-item/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqc-context-item.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/xqilla.vcxproj b/Win32Projects/VC11/xqilla.vcxproj new file mode 100644 index 00000000..37233847 --- /dev/null +++ b/Win32Projects/VC11/xqilla.vcxproj @@ -0,0 +1,1265 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Static Debug + Win32 + + + Static Debug + x64 + + + Release + Win32 + + + Release + x64 + + + Static Release + Win32 + + + Static Release + x64 + + + + {63E85107-41E0-4FC7-8083-40E85861B426} + + + + DynamicLibrary + false + MultiByte + v110 + + + StaticLibrary + false + MultiByte + v110 + + + DynamicLibrary + false + MultiByte + v110 + + + StaticLibrary + false + MultiByte + v110 + + + DynamicLibrary + false + MultiByte + v110 + + + StaticLibrary + false + MultiByte + v110 + + + DynamicLibrary + false + MultiByte + v110 + + + StaticLibrary + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqilla\ + false + xqilla23d + .dll + ..\..\build\windows\VC11\$(Platform)\Static Debug\ + ./$(OutDir)xqilla\ + false + xqilla23sd + .lib + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqilla\ + false + xqilla23 + .dll + ..\..\build\windows\VC11\$(Platform)\Static Release\ + ./$(OutDir)xqilla\ + false + xqilla23s + .lib + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqilla\ + false + xqilla23d + .dll + ..\..\build\windows\VC11\$(Platform)\Static Debug\ + ./$(OutDir)xqilla\ + false + xqilla23sd + .lib + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqilla\ + false + xqilla23 + .dll + ..\..\build\windows\VC11\$(Platform)\Static Release\ + ./$(OutDir)xqilla\ + false + xqilla23s + .lib + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqilla.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xerces-c_3d.lib;%(AdditionalDependencies) + ../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla23d.pdb + true + true + $(OutDir)xqilla23d.lib + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY;%(PreprocessorDefinitions) + true + MultiThreadedDebug + + + ./$(OutDir)xqilla.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + $(OutDir)$(TargetName)$(TargetExt) + /machine:x86 %(AdditionalOptions) + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqilla.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xerces-c_3.lib;%(AdditionalDependencies) + ../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla23.pdb + true + true + $(OutDir)xqilla23.lib + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY;%(PreprocessorDefinitions) + true + MultiThreaded + true + + + ./$(OutDir)xqilla.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + Default + + + $(OutDir)$(TargetName)$(TargetExt) + /machine:x86 %(AdditionalOptions) + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqilla.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xerces-c_3d.lib;%(AdditionalDependencies) + ../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla23d.pdb + true + true + $(OutDir)xqilla23d.lib + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY;%(PreprocessorDefinitions) + true + MultiThreadedDebug + + + ./$(OutDir)xqilla.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + $(OutDir)$(TargetName)$(TargetExt) + /machine:x64 %(AdditionalOptions) + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_USRDLL;XQILLA_APIS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqilla.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xerces-c_3.lib;%(AdditionalDependencies) + ../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla23.pdb + true + true + $(OutDir)xqilla23.lib + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_LIB;XQILLA_API=;XERCES_STATIC_LIBRARY;%(PreprocessorDefinitions) + true + MultiThreaded + true + + + ./$(OutDir)xqilla.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + Default + + + $(OutDir)$(TargetName)$(TargetExt) + /machine:x64 %(AdditionalOptions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/xqilla_cmd.vcxproj b/Win32Projects/VC11/xqilla_cmd.vcxproj new file mode 100644 index 00000000..ec3ad33b --- /dev/null +++ b/Win32Projects/VC11/xqilla_cmd.vcxproj @@ -0,0 +1,422 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Static Debug + Win32 + + + Static Debug + x64 + + + Release + Win32 + + + Release + x64 + + + Static Release + Win32 + + + Static Release + x64 + + + + {44F4673C-C971-4085-8750-3BA0D7FE6FD2} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqilla_cmd\ + false + xqilla + .exe + ..\..\build\windows\VC11\$(Platform)\Static Debug\ + ./$(OutDir)xqilla_cmd\ + false + xqilla + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqilla_cmd\ + false + xqilla + .exe + ..\..\build\windows\VC11\$(Platform)\Static Release\ + ./$(OutDir)xqilla_cmd\ + false + xqilla + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqilla_cmd\ + false + xqilla + .exe + ..\..\build\windows\VC11\$(Platform)\Static Debug\ + ./$(OutDir)xqilla_cmd\ + false + xqilla + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqilla_cmd\ + false + xqilla + .exe + ..\..\build\windows\VC11\$(Platform)\Static Release\ + ./$(OutDir)xqilla_cmd\ + false + xqilla + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqilla_cmd.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions) + true + MultiThreadedDebug + + + ./$(OutDir)xqilla_cmd.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23sd.lib;xerces-c_static_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqilla_cmd.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions) + true + MultiThreaded + true + + + ./$(OutDir)xqilla_cmd.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23s.lib;xerces-c_static_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqilla_cmd.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions) + true + MultiThreadedDebug + + + ./$(OutDir)xqilla_cmd.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23sd.lib;xerces-c_static_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqilla_cmd.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;XQILLA_API=;XERCES_STATIC_LIBRARY=;%(PreprocessorDefinitions) + true + MultiThreaded + true + + + ./$(OutDir)xqilla_cmd.pch + $(OutDir)xqilla/ + $(OutDir)xqilla/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23s.lib;xerces-c_static_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqilla.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC11/xqtsRunner.vcxproj b/Win32Projects/VC11/xqtsRunner.vcxproj new file mode 100644 index 00000000..25ae7293 --- /dev/null +++ b/Win32Projects/VC11/xqtsRunner.vcxproj @@ -0,0 +1,224 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3} + + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + Application + false + MultiByte + v110 + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqtsRunner\ + false + xqtsRunner + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqtsRunner\ + false + xqtsRunner + .exe + ..\..\build\windows\VC11\$(Platform)\Debug\ + ./$(OutDir)xqtsRunner\ + false + xqtsRunner + .exe + ..\..\build\windows\VC11\$(Platform)\Release\ + ./$(OutDir)xqtsRunner\ + false + xqtsRunner + .exe + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqtsRunner.pch + $(OutDir)xqtsRunner/ + $(OutDir)xqtsRunner/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqtsRunner.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqtsRunner.pch + $(OutDir)xqtsRunner/ + $(OutDir)xqtsRunner/ + Level3 + true + ProgramDatabase + Default + + + /machine:x86 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win32/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win32/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqtsRunner.pdb + true + true + true + NotSet + + + + + Disabled + true + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDebugDLL + + + ./$(OutDir)xqtsRunner.pch + $(OutDir)xqtsRunner/ + $(OutDir)xqtsRunner/ + Level3 + true + ProgramDatabase + EnableFastChecks + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23d.lib;xerces-c_3d.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqtsRunner.pdb + true + true + true + NotSet + + + + + MaxSpeed + true + OnlyExplicitInline + ../../include;../../src/lexer;../../../xerces-c-src/include;../../../xerces-c-src/src;%(AdditionalIncludeDirectories) + WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CONSOLE;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + ./$(OutDir)xqtsRunner.pch + $(OutDir)xqtsRunner/ + $(OutDir)xqtsRunner/ + Level3 + true + ProgramDatabase + Default + + + /machine:x64 %(AdditionalOptions) + xqilla23.lib;xerces-c_3.lib;%(AdditionalDependencies) + $(OutDir);../../../xerces-c-src/Build/Win64/VC9/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC10/$(ConfigurationName);../../../xerces-c-src/Build/Win64/VC11/$(ConfigurationName);../lib;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName)$(TargetExt) + $(OutDir)xqtsRunner.pdb + true + true + true + NotSet + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win32Projects/VC7.1/XQilla.sln b/Win32Projects/VC7.1/XQilla.sln deleted file mode 100644 index a81dbb31..00000000 --- a/Win32Projects/VC7.1/XQilla.sln +++ /dev/null @@ -1,172 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla", "XQilla.vcproj", "{63E85107-41E0-4FC7-8083-40E85861B426}" - 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}") = "simple-basic", "simple-basic.vcproj", "{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple-context-item", "simple-context-item.vcproj", "{55BEA039-4B29-4909-902A-9DD4BEADBCD0}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-basic", "dom-basic.vcproj", "{6672DE96-EA92-44A2-900E-6868A86FB044}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-context-item", "dom-context-item.vcproj", "{E1A71F82-696D-4439-B647-CE04D75E49DC}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-resolver", "dom-resolver.vcproj", "{31B7B9AA-109C-4B71-ADA6-274A6420969E}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqtsRunner", "xqtsRunner.vcproj", "{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xmarkRunner", "xmarkRunner.vcproj", "{619264FA-3730-43C4-A903-0EAA453527AC}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Debug AMD64 = Debug AMD64 - Debug IA64 = Debug IA64 - 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 - {63E85107-41E0-4FC7-8083-40E85861B426}.Debug.Build.0 = Debug|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Debug AMD64.ActiveCfg = Debug AMD64|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Debug AMD64.Build.0 = Debug AMD64|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Debug IA64.ActiveCfg = Debug IA64|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Debug IA64.Build.0 = Debug IA64|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Release.ActiveCfg = Release|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Release.Build.0 = Release|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Release AMD64.ActiveCfg = Release AMD64|Win32 - {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 - {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 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug AMD64.Build.0 = Debug AMD64|Win32 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug IA64.ActiveCfg = Debug IA64|Win32 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug IA64.Build.0 = Debug IA64|Win32 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release.ActiveCfg = Release|Win32 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release.Build.0 = Release|Win32 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release AMD64.ActiveCfg = Release AMD64|Win32 - {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 - {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 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug IA64.ActiveCfg = Debug|Win32 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release.ActiveCfg = Release|Win32 - {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 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug IA64.ActiveCfg = Debug|Win32 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release.ActiveCfg = Release|Win32 - {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 - {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug IA64.ActiveCfg = Debug|Win32 - {6672DE96-EA92-44A2-900E-6868A86FB044}.Release.ActiveCfg = Release|Win32 - {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 - {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug IA64.ActiveCfg = Debug|Win32 - {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release.ActiveCfg = Release|Win32 - {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 - {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug IA64.ActiveCfg = Debug|Win32 - {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release.ActiveCfg = Release|Win32 - {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|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|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 - {619264FA-3730-43C4-A903-0EAA453527AC}.Debug IA64.ActiveCfg = Debug|Win32 - {619264FA-3730-43C4-A903-0EAA453527AC}.Release.ActiveCfg = Release|Win32 - {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 - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection - GlobalSection(DPCodeReviewSolutionGUID) = preSolution - DPCodeReviewSolutionGUID = {00000000-0000-0000-0000-000000000000} - EndGlobalSection -EndGlobal diff --git a/Win32Projects/VC7.1/dom-basic.vcproj b/Win32Projects/VC7.1/dom-basic.vcproj deleted file mode 100644 index b402432a..00000000 --- a/Win32Projects/VC7.1/dom-basic.vcproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/dom-context-item.vcproj b/Win32Projects/VC7.1/dom-context-item.vcproj deleted file mode 100644 index 7479965d..00000000 --- a/Win32Projects/VC7.1/dom-context-item.vcproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/dom-resolver.vcproj b/Win32Projects/VC7.1/dom-resolver.vcproj deleted file mode 100644 index 8f1fb581..00000000 --- a/Win32Projects/VC7.1/dom-resolver.vcproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/simple-basic.vcproj b/Win32Projects/VC7.1/simple-basic.vcproj deleted file mode 100644 index 45be1040..00000000 --- a/Win32Projects/VC7.1/simple-basic.vcproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/simple-context-item.vcproj b/Win32Projects/VC7.1/simple-context-item.vcproj deleted file mode 100644 index 5e88dbce..00000000 --- a/Win32Projects/VC7.1/simple-context-item.vcproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/xmarkRunner.vcproj b/Win32Projects/VC7.1/xmarkRunner.vcproj deleted file mode 100644 index c1fb3233..00000000 --- a/Win32Projects/VC7.1/xmarkRunner.vcproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/xqc-basic.vcproj b/Win32Projects/VC7.1/xqc-basic.vcproj deleted file mode 100644 index 5f8c340c..00000000 --- a/Win32Projects/VC7.1/xqc-basic.vcproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/xqc-context-item.vcproj b/Win32Projects/VC7.1/xqc-context-item.vcproj deleted file mode 100644 index 8b8efd63..00000000 --- a/Win32Projects/VC7.1/xqc-context-item.vcproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/xqilla.vcproj b/Win32Projects/VC7.1/xqilla.vcproj deleted file mode 100644 index 36cef45f..00000000 --- a/Win32Projects/VC7.1/xqilla.vcproj +++ /dev/null @@ -1,975 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/xqilla_cmd.vcproj b/Win32Projects/VC7.1/xqilla_cmd.vcproj deleted file mode 100644 index 06e75756..00000000 --- a/Win32Projects/VC7.1/xqilla_cmd.vcproj +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC7.1/xqtsRunner.vcproj b/Win32Projects/VC7.1/xqtsRunner.vcproj deleted file mode 100644 index 0369f414..00000000 --- a/Win32Projects/VC7.1/xqtsRunner.vcproj +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Win32Projects/VC8/XQilla.sln b/Win32Projects/VC9/XQilla.sln old mode 100755 new mode 100644 similarity index 87% rename from Win32Projects/VC8/XQilla.sln rename to Win32Projects/VC9/XQilla.sln index b8686859..9a0400f5 --- a/Win32Projects/VC8/XQilla.sln +++ b/Win32Projects/VC9/XQilla.sln @@ -1,188 +1,206 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 - -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla", "xqilla.vcproj", "{63E85107-41E0-4FC7-8083-40E85861B426}" -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}") = "simple-basic", "simple-basic.vcproj", "{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple-context-item", "simple-context-item.vcproj", "{55BEA039-4B29-4909-902A-9DD4BEADBCD0}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-basic", "dom-basic.vcproj", "{6672DE96-EA92-44A2-900E-6868A86FB044}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-context-item", "dom-context-item.vcproj", "{E1A71F82-696D-4439-B647-CE04D75E49DC}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-resolver", "dom-resolver.vcproj", "{31B7B9AA-109C-4B71-ADA6-274A6420969E}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xmarkRunner", "xmarkRunner.vcproj", "{619264FA-3730-43C4-A903-0EAA453527AC}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqtsRunner", "xqtsRunner.vcproj", "{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}" - ProjectSection(ProjectDependencies) = postProject - {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - Static Debug|Win32 = Static Debug|Win32 - Static Debug|x64 = Static Debug|x64 - Static Release|Win32 = Static Release|Win32 - Static Release|x64 = Static Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|Win32.ActiveCfg = Debug|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|Win32.Build.0 = Debug|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|x64.ActiveCfg = Debug|x64 - {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|x64.Build.0 = Debug|x64 - {63E85107-41E0-4FC7-8083-40E85861B426}.Release|Win32.ActiveCfg = Release|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Release|Win32.Build.0 = Release|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Release|x64.ActiveCfg = Release|x64 - {63E85107-41E0-4FC7-8083-40E85861B426}.Release|x64.Build.0 = Release|x64 - {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|Win32.ActiveCfg = Static Debug|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|Win32.Build.0 = Static Debug|Win32 - {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|x64.ActiveCfg = Static Debug|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 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|x64.Build.0 = Debug|x64 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|Win32.ActiveCfg = Release|Win32 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|Win32.Build.0 = Release|Win32 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|x64.ActiveCfg = Release|x64 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|x64.Build.0 = Release|x64 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|Win32.ActiveCfg = Static Debug|Win32 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|Win32.Build.0 = Static Debug|Win32 - {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|x64.ActiveCfg = Static Debug|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 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|x64.Build.0 = Debug|x64 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|Win32.ActiveCfg = Release|Win32 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|Win32.Build.0 = Release|Win32 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|x64.ActiveCfg = Release|x64 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|x64.Build.0 = Release|x64 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|Win32.ActiveCfg = Debug|Win32 - {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|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 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|x64.Build.0 = Debug|x64 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|Win32.ActiveCfg = Release|Win32 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|Win32.Build.0 = Release|Win32 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|x64.ActiveCfg = Release|x64 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|x64.Build.0 = Release|x64 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|Win32.ActiveCfg = Debug|Win32 - {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|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 - {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|x64.Build.0 = Debug|x64 - {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|Win32.ActiveCfg = Release|Win32 - {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|Win32.Build.0 = Release|Win32 - {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|x64.ActiveCfg = Release|x64 - {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|x64.Build.0 = Release|x64 - {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|Win32.ActiveCfg = Debug|Win32 - {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|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 - {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|x64.Build.0 = Debug|x64 - {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|Win32.ActiveCfg = Release|Win32 - {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|Win32.Build.0 = Release|Win32 - {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|x64.ActiveCfg = Release|x64 - {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|x64.Build.0 = Release|x64 - {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|Win32.ActiveCfg = Debug|Win32 - {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|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 - {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|x64.Build.0 = Debug|x64 - {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|Win32.ActiveCfg = Release|Win32 - {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|Win32.Build.0 = Release|Win32 - {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|x64.ActiveCfg = Release|x64 - {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|x64.Build.0 = Release|x64 - {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|Win32.ActiveCfg = Debug|Win32 - {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|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 - {619264FA-3730-43C4-A903-0EAA453527AC}.Debug|x64.Build.0 = Debug|x64 - {619264FA-3730-43C4-A903-0EAA453527AC}.Release|Win32.ActiveCfg = Release|Win32 - {619264FA-3730-43C4-A903-0EAA453527AC}.Release|Win32.Build.0 = Release|Win32 - {619264FA-3730-43C4-A903-0EAA453527AC}.Release|x64.ActiveCfg = Release|x64 - {619264FA-3730-43C4-A903-0EAA453527AC}.Release|x64.Build.0 = Release|x64 - {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|Win32.ActiveCfg = Debug|Win32 - {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|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 - {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|x64.Build.0 = Debug|x64 - {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|Win32.ActiveCfg = Release|Win32 - {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|Win32.Build.0 = Release|Win32 - {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|x64.ActiveCfg = Release|x64 - {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|x64.Build.0 = Release|x64 - {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|Win32.ActiveCfg = Debug|Win32 - {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|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 - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla", "xqilla.vcproj", "{63E85107-41E0-4FC7-8083-40E85861B426}" +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}") = "xqtsRunner", "xqtsRunner.vcproj", "{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xmarkRunner", "xmarkRunner.vcproj", "{619264FA-3730-43C4-A903-0EAA453527AC}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple-context-item", "simple-context-item.vcproj", "{55BEA039-4B29-4909-902A-9DD4BEADBCD0}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple-basic", "simple-basic.vcproj", "{C03914F5-AA13-4B1C-A4B0-8FD6560AB573}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-resolver", "dom-resolver.vcproj", "{31B7B9AA-109C-4B71-ADA6-274A6420969E}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-context-item", "dom-context-item.vcproj", "{E1A71F82-696D-4439-B647-CE04D75E49DC}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dom-basic", "dom-basic.vcproj", "{6672DE96-EA92-44A2-900E-6868A86FB044}" + ProjectSection(ProjectDependencies) = postProject + {63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + Static Debug|Win32 = Static Debug|Win32 + Static Debug|x64 = Static Debug|x64 + Static Release|Win32 = Static Release|Win32 + Static Release|x64 = Static Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|Win32.ActiveCfg = Debug|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|Win32.Build.0 = Debug|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|x64.ActiveCfg = Debug|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Debug|x64.Build.0 = Debug|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Release|Win32.ActiveCfg = Release|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Release|Win32.Build.0 = Release|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Release|x64.ActiveCfg = Release|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Release|x64.Build.0 = Release|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|Win32.ActiveCfg = Static Debug|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|Win32.Build.0 = Static Debug|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|x64.ActiveCfg = Static Debug|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Debug|x64.Build.0 = Static Debug|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|Win32.ActiveCfg = Static Release|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|Win32.Build.0 = Static Release|Win32 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|x64.ActiveCfg = Static Release|x64 + {63E85107-41E0-4FC7-8083-40E85861B426}.Static Release|x64.Build.0 = Static Release|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|Win32.ActiveCfg = Debug|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|Win32.Build.0 = Debug|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|x64.ActiveCfg = Debug|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Debug|x64.Build.0 = Debug|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|Win32.ActiveCfg = Release|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|Win32.Build.0 = Release|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|x64.ActiveCfg = Release|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Release|x64.Build.0 = Release|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|Win32.ActiveCfg = Static Debug|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|Win32.Build.0 = Static Debug|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|x64.ActiveCfg = Static Debug|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Debug|x64.Build.0 = Static Debug|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|Win32.ActiveCfg = Static Release|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|Win32.Build.0 = Static Release|Win32 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|x64.ActiveCfg = Static Release|x64 + {44F4673C-C971-4085-8750-3BA0D7FE6FD2}.Static Release|x64.Build.0 = Static Release|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|Win32.ActiveCfg = Debug|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|Win32.Build.0 = Debug|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|x64.ActiveCfg = Debug|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug|x64.Build.0 = Debug|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|Win32.ActiveCfg = Release|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|Win32.Build.0 = Release|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|x64.ActiveCfg = Release|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release|x64.Build.0 = Release|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|Win32.Build.0 = Debug|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|x64.ActiveCfg = Debug|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Debug|x64.Build.0 = Debug|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|Win32.ActiveCfg = Release|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|Win32.Build.0 = Release|Win32 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|x64.ActiveCfg = Release|x64 + {E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Static Release|x64.Build.0 = Release|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Debug|Win32.ActiveCfg = Debug|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Debug|Win32.Build.0 = Debug|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Debug|x64.ActiveCfg = Debug|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Debug|x64.Build.0 = Debug|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Release|Win32.ActiveCfg = Release|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Release|Win32.Build.0 = Release|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Release|x64.ActiveCfg = Release|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Release|x64.Build.0 = Release|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|Win32.Build.0 = Debug|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|x64.ActiveCfg = Debug|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Debug|x64.Build.0 = Debug|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|Win32.ActiveCfg = Release|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|Win32.Build.0 = Release|Win32 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|x64.ActiveCfg = Release|x64 + {619264FA-3730-43C4-A903-0EAA453527AC}.Static Release|x64.Build.0 = Release|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|Win32.ActiveCfg = Debug|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|Win32.Build.0 = Debug|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|x64.ActiveCfg = Debug|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Debug|x64.Build.0 = Debug|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|Win32.ActiveCfg = Release|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|Win32.Build.0 = Release|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|x64.ActiveCfg = Release|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Release|x64.Build.0 = Release|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|Win32.Build.0 = Debug|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|x64.ActiveCfg = Debug|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Debug|x64.Build.0 = Debug|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|Win32.ActiveCfg = Release|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|Win32.Build.0 = Release|Win32 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|x64.ActiveCfg = Release|x64 + {55BEA039-4B29-4909-902A-9DD4BEADBCD0}.Static Release|x64.Build.0 = Release|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|Win32.ActiveCfg = Debug|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|Win32.Build.0 = Debug|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|x64.ActiveCfg = Debug|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Debug|x64.Build.0 = Debug|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|Win32.ActiveCfg = Release|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|Win32.Build.0 = Release|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|x64.ActiveCfg = Release|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Release|x64.Build.0 = Release|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|Win32.Build.0 = Debug|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|x64.ActiveCfg = Debug|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Debug|x64.Build.0 = Debug|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|Win32.ActiveCfg = Release|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|Win32.Build.0 = Release|Win32 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|x64.ActiveCfg = Release|x64 + {C03914F5-AA13-4B1C-A4B0-8FD6560AB573}.Static Release|x64.Build.0 = Release|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|Win32.ActiveCfg = Debug|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|Win32.Build.0 = Debug|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|x64.ActiveCfg = Debug|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Debug|x64.Build.0 = Debug|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|Win32.ActiveCfg = Release|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|Win32.Build.0 = Release|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|x64.ActiveCfg = Release|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Release|x64.Build.0 = Release|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|Win32.Build.0 = Debug|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|x64.ActiveCfg = Debug|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Debug|x64.Build.0 = Debug|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|Win32.ActiveCfg = Release|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|Win32.Build.0 = Release|Win32 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|x64.ActiveCfg = Release|x64 + {31B7B9AA-109C-4B71-ADA6-274A6420969E}.Static Release|x64.Build.0 = Release|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|Win32.ActiveCfg = Debug|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|Win32.Build.0 = Debug|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|x64.ActiveCfg = Debug|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Debug|x64.Build.0 = Debug|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|Win32.ActiveCfg = Release|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|Win32.Build.0 = Release|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|x64.ActiveCfg = Release|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Release|x64.Build.0 = Release|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|Win32.Build.0 = Debug|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|x64.ActiveCfg = Debug|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Debug|x64.Build.0 = Debug|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|Win32.ActiveCfg = Release|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|Win32.Build.0 = Release|Win32 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|x64.ActiveCfg = Release|x64 + {E1A71F82-696D-4439-B647-CE04D75E49DC}.Static Release|x64.Build.0 = Release|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|Win32.ActiveCfg = Debug|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|Win32.Build.0 = Debug|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|x64.ActiveCfg = Debug|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Debug|x64.Build.0 = Debug|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|Win32.ActiveCfg = Release|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|Win32.Build.0 = Release|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|x64.ActiveCfg = Release|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Release|x64.Build.0 = Release|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|Win32.ActiveCfg = Debug|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|Win32.Build.0 = Debug|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|x64.ActiveCfg = Debug|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Debug|x64.Build.0 = Debug|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|Win32.ActiveCfg = Release|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|Win32.Build.0 = Release|Win32 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|x64.ActiveCfg = Release|x64 + {6672DE96-EA92-44A2-900E-6868A86FB044}.Static Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Win32Projects/VC8/dom-basic.vcproj b/Win32Projects/VC9/dom-basic.vcproj similarity index 63% rename from Win32Projects/VC8/dom-basic.vcproj rename to Win32Projects/VC9/dom-basic.vcproj index 5588adb9..399b1b5e 100644 --- a/Win32Projects/VC8/dom-basic.vcproj +++ b/Win32Projects/VC9/dom-basic.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,10 +23,10 @@ - + - + @@ -35,10 +34,10 @@ - + - + @@ -46,29 +45,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/Win32Projects/VC8/dom-context-item.vcproj b/Win32Projects/VC9/dom-context-item.vcproj similarity index 63% rename from Win32Projects/VC8/dom-context-item.vcproj rename to Win32Projects/VC9/dom-context-item.vcproj index de9edbd1..22153c6b 100644 --- a/Win32Projects/VC8/dom-context-item.vcproj +++ b/Win32Projects/VC9/dom-context-item.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,10 +23,10 @@ - + - + @@ -35,10 +34,10 @@ - + - + @@ -46,29 +45,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/Win32Projects/VC8/dom-resolver.vcproj b/Win32Projects/VC9/dom-resolver.vcproj similarity index 63% rename from Win32Projects/VC8/dom-resolver.vcproj rename to Win32Projects/VC9/dom-resolver.vcproj index 0937dbfa..44c0b17b 100644 --- a/Win32Projects/VC8/dom-resolver.vcproj +++ b/Win32Projects/VC9/dom-resolver.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,10 +23,10 @@ - + - + @@ -35,10 +34,10 @@ - + - + @@ -46,29 +45,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/Win32Projects/VC8/simple-basic.vcproj b/Win32Projects/VC9/simple-basic.vcproj similarity index 63% rename from Win32Projects/VC8/simple-basic.vcproj rename to Win32Projects/VC9/simple-basic.vcproj index 3428693d..6f8ef4b1 100644 --- a/Win32Projects/VC8/simple-basic.vcproj +++ b/Win32Projects/VC9/simple-basic.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,10 +23,10 @@ - + - + @@ -35,10 +34,10 @@ - + - + @@ -46,29 +45,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/Win32Projects/VC8/simple-context-item.vcproj b/Win32Projects/VC9/simple-context-item.vcproj similarity index 63% rename from Win32Projects/VC8/simple-context-item.vcproj rename to Win32Projects/VC9/simple-context-item.vcproj index 2440e911..c5812a0c 100644 --- a/Win32Projects/VC8/simple-context-item.vcproj +++ b/Win32Projects/VC9/simple-context-item.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,10 +23,10 @@ - + - + @@ -35,10 +34,10 @@ - + - + @@ -46,29 +45,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/Win32Projects/VC8/xmarkRunner.vcproj b/Win32Projects/VC9/xmarkRunner.vcproj similarity index 63% rename from Win32Projects/VC8/xmarkRunner.vcproj rename to Win32Projects/VC9/xmarkRunner.vcproj index 9286c708..fb64050b 100644 --- a/Win32Projects/VC8/xmarkRunner.vcproj +++ b/Win32Projects/VC9/xmarkRunner.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,10 +23,10 @@ - + - + @@ -35,10 +34,10 @@ - + - + @@ -46,29 +45,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/Win32Projects/VC8/xqc-basic.vcproj b/Win32Projects/VC9/xqc-basic.vcproj similarity index 63% rename from Win32Projects/VC8/xqc-basic.vcproj rename to Win32Projects/VC9/xqc-basic.vcproj index b95469a2..8eeb90d8 100644 --- a/Win32Projects/VC8/xqc-basic.vcproj +++ b/Win32Projects/VC9/xqc-basic.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,10 +23,10 @@ - + - + @@ -35,10 +34,10 @@ - + - + @@ -46,29 +45,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/Win32Projects/VC8/xqc-context-item.vcproj b/Win32Projects/VC9/xqc-context-item.vcproj similarity index 63% rename from Win32Projects/VC8/xqc-context-item.vcproj rename to Win32Projects/VC9/xqc-context-item.vcproj index d4aae50c..99433ca2 100644 --- a/Win32Projects/VC8/xqc-context-item.vcproj +++ b/Win32Projects/VC9/xqc-context-item.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,10 +23,10 @@ - + - + @@ -35,10 +34,10 @@ - + - + @@ -46,29 +45,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/Win32Projects/VC8/xqilla.vcproj b/Win32Projects/VC9/xqilla.vcproj similarity index 91% rename from Win32Projects/VC8/xqilla.vcproj rename to Win32Projects/VC9/xqilla.vcproj index de68b866..2416594d 100644 --- a/Win32Projects/VC8/xqilla.vcproj +++ b/Win32Projects/VC9/xqilla.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -25,7 +24,7 @@ - + @@ -33,10 +32,10 @@ - + - + @@ -45,7 +44,7 @@ - + @@ -53,10 +52,10 @@ - + - + @@ -65,7 +64,7 @@ - + @@ -73,10 +72,10 @@ - + - + @@ -85,46 +84,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Win32Projects/VC8/xqilla_cmd.vcproj b/Win32Projects/VC9/xqilla_cmd.vcproj similarity index 62% rename from Win32Projects/VC8/xqilla_cmd.vcproj rename to Win32Projects/VC9/xqilla_cmd.vcproj index d60dca37..55ef7f88 100644 --- a/Win32Projects/VC8/xqilla_cmd.vcproj +++ b/Win32Projects/VC9/xqilla_cmd.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,8 +23,8 @@ - - + + @@ -33,10 +32,10 @@ - + - + @@ -44,8 +43,8 @@ - - + + @@ -53,10 +52,10 @@ - + - + @@ -64,8 +63,8 @@ - - + + @@ -73,10 +72,10 @@ - + - + @@ -84,47 +83,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/Win32Projects/VC8/xqtsRunner.vcproj b/Win32Projects/VC9/xqtsRunner.vcproj similarity index 63% rename from Win32Projects/VC8/xqtsRunner.vcproj rename to Win32Projects/VC9/xqtsRunner.vcproj index 950bf495..75363408 100644 --- a/Win32Projects/VC8/xqtsRunner.vcproj +++ b/Win32Projects/VC9/xqtsRunner.vcproj @@ -1,11 +1,10 @@ - + - - + @@ -13,10 +12,10 @@ - + - + @@ -24,10 +23,10 @@ - + - + @@ -35,10 +34,10 @@ - + - + @@ -46,29 +45,7 @@ - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/configure b/configure index 1ebfe85f..a49e30b4 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.67 for XQilla 2.3.2. +# Generated by GNU Autoconf 2.67 for XQilla 2.3.3. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -698,8 +698,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='XQilla' PACKAGE_TARNAME='xqilla' -PACKAGE_VERSION='2.3.2' -PACKAGE_STRING='XQilla 2.3.2' +PACKAGE_VERSION='2.3.3' +PACKAGE_STRING='XQilla 2.3.3' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1453,7 +1453,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures XQilla 2.3.2 to adapt to many kinds of systems. +\`configure' configures XQilla 2.3.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1524,7 +1524,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of XQilla 2.3.2:";; + short | recursive ) echo "Configuration of XQilla 2.3.3:";; esac cat <<\_ACEOF @@ -1634,7 +1634,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -XQilla configure 2.3.2 +XQilla configure 2.3.3 generated by GNU Autoconf 2.67 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2174,7 +2174,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by XQilla $as_me 2.3.2, which was +It was created by XQilla $as_me 2.3.3, which was generated by GNU Autoconf 2.67. Invocation command line was $ $0 $@ @@ -3102,7 +3102,7 @@ fi # Define the identity of the package. PACKAGE=XQilla - VERSION=2.3.2 + VERSION=2.3.3 cat >>confdefs.h <<_ACEOF @@ -17262,7 +17262,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by XQilla $as_me 2.3.2, which was +This file was extended by XQilla $as_me 2.3.3, which was generated by GNU Autoconf 2.67. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17328,7 +17328,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -XQilla config.status 2.3.2 +XQilla config.status 2.3.3 configured by $0, generated by GNU Autoconf 2.67, with options \\"\$ac_cs_config\\" diff --git a/configure.in b/configure.in index 9a8be6d2..be53b9bc 100644 --- a/configure.in +++ b/configure.in @@ -2,10 +2,10 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([XQilla],[2.3.2],[]) +AC_INIT([XQilla],[2.3.3],[]) AC_CONFIG_AUX_DIR(autotools) AC_CANONICAL_TARGET([]) -AM_INIT_AUTOMAKE(XQilla, 2.3.2,) +AM_INIT_AUTOMAKE(XQilla, 2.3.3,) AC_CONFIG_SRCDIR([src/runtime/Result.cpp]) AC_CONFIG_HEADERS([src/config/xqilla_config_unix.h]) AC_CONFIG_MACRO_DIR([autotools/m4]) diff --git a/docs/dom3-api/DOMAttr_8hpp.html b/docs/dom3-api/DOMAttr_8hpp.html index 0aebc3a0..ca480b6e 100644 --- a/docs/dom3-api/DOMAttr_8hpp.html +++ b/docs/dom3-api/DOMAttr_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMAttr_8hpp_source.html b/docs/dom3-api/DOMAttr_8hpp_source.html index d5aa6f4f..30095189 100644 --- a/docs/dom3-api/DOMAttr_8hpp_source.html +++ b/docs/dom3-api/DOMAttr_8hpp_source.html @@ -107,7 +107,7 @@ 00175 00176 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMCDATASection_8hpp.html b/docs/dom3-api/DOMCDATASection_8hpp.html index 19066e1f..4bb89490 100644 --- a/docs/dom3-api/DOMCDATASection_8hpp.html +++ b/docs/dom3-api/DOMCDATASection_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMCDATASection_8hpp_source.html b/docs/dom3-api/DOMCDATASection_8hpp_source.html index 537f783b..faf10895 100644 --- a/docs/dom3-api/DOMCDATASection_8hpp_source.html +++ b/docs/dom3-api/DOMCDATASection_8hpp_source.html @@ -80,7 +80,7 @@ 00103 00104 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMCharacterData_8hpp.html b/docs/dom3-api/DOMCharacterData_8hpp.html index 2ca77a69..d1a84e20 100644 --- a/docs/dom3-api/DOMCharacterData_8hpp.html +++ b/docs/dom3-api/DOMCharacterData_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMCharacterData_8hpp_source.html b/docs/dom3-api/DOMCharacterData_8hpp_source.html index d594e7ab..449a64c2 100644 --- a/docs/dom3-api/DOMCharacterData_8hpp_source.html +++ b/docs/dom3-api/DOMCharacterData_8hpp_source.html @@ -109,7 +109,7 @@ 00214 00215 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMComment_8hpp.html b/docs/dom3-api/DOMComment_8hpp.html index c36023e4..fa41589a 100644 --- a/docs/dom3-api/DOMComment_8hpp.html +++ b/docs/dom3-api/DOMComment_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMComment_8hpp_source.html b/docs/dom3-api/DOMComment_8hpp_source.html index f35a4643..c4b85f7b 100644 --- a/docs/dom3-api/DOMComment_8hpp_source.html +++ b/docs/dom3-api/DOMComment_8hpp_source.html @@ -78,7 +78,7 @@ 00075 #endif 00076 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMConfiguration_8hpp.html b/docs/dom3-api/DOMConfiguration_8hpp.html index 81826b90..b0ffa6f0 100644 --- a/docs/dom3-api/DOMConfiguration_8hpp.html +++ b/docs/dom3-api/DOMConfiguration_8hpp.html @@ -71,7 +71,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMConfiguration_8hpp_source.html b/docs/dom3-api/DOMConfiguration_8hpp_source.html index 55d60d04..96b935a0 100644 --- a/docs/dom3-api/DOMConfiguration_8hpp_source.html +++ b/docs/dom3-api/DOMConfiguration_8hpp_source.html @@ -102,7 +102,7 @@ 00450 #endif 00451 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocumentFragment_8hpp.html b/docs/dom3-api/DOMDocumentFragment_8hpp.html index 93b113d9..b0ad1172 100644 --- a/docs/dom3-api/DOMDocumentFragment_8hpp.html +++ b/docs/dom3-api/DOMDocumentFragment_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocumentFragment_8hpp_source.html b/docs/dom3-api/DOMDocumentFragment_8hpp_source.html index d99fddc8..520a8eaf 100644 --- a/docs/dom3-api/DOMDocumentFragment_8hpp_source.html +++ b/docs/dom3-api/DOMDocumentFragment_8hpp_source.html @@ -78,7 +78,7 @@ 00107 00108 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocumentRange_8hpp.html b/docs/dom3-api/DOMDocumentRange_8hpp.html index a2d4517c..96ddee1c 100644 --- a/docs/dom3-api/DOMDocumentRange_8hpp.html +++ b/docs/dom3-api/DOMDocumentRange_8hpp.html @@ -66,7 +66,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocumentRange_8hpp_source.html b/docs/dom3-api/DOMDocumentRange_8hpp_source.html index f62a5da5..fe2c6059 100644 --- a/docs/dom3-api/DOMDocumentRange_8hpp_source.html +++ b/docs/dom3-api/DOMDocumentRange_8hpp_source.html @@ -87,7 +87,7 @@ 00094 00095 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocumentTraversal_8hpp.html b/docs/dom3-api/DOMDocumentTraversal_8hpp.html index b3ac8806..62cba295 100644 --- a/docs/dom3-api/DOMDocumentTraversal_8hpp.html +++ b/docs/dom3-api/DOMDocumentTraversal_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocumentTraversal_8hpp_source.html b/docs/dom3-api/DOMDocumentTraversal_8hpp_source.html index 5f67b0e1..3512503f 100644 --- a/docs/dom3-api/DOMDocumentTraversal_8hpp_source.html +++ b/docs/dom3-api/DOMDocumentTraversal_8hpp_source.html @@ -97,7 +97,7 @@ 00154 00155 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocumentType_8hpp.html b/docs/dom3-api/DOMDocumentType_8hpp.html index 29c7163a..6ef40f26 100644 --- a/docs/dom3-api/DOMDocumentType_8hpp.html +++ b/docs/dom3-api/DOMDocumentType_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocumentType_8hpp_source.html b/docs/dom3-api/DOMDocumentType_8hpp_source.html index df196831..08aab590 100644 --- a/docs/dom3-api/DOMDocumentType_8hpp_source.html +++ b/docs/dom3-api/DOMDocumentType_8hpp_source.html @@ -98,7 +98,7 @@ 00159 00160 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocument_8hpp.html b/docs/dom3-api/DOMDocument_8hpp.html index 2684d973..968a96d0 100644 --- a/docs/dom3-api/DOMDocument_8hpp.html +++ b/docs/dom3-api/DOMDocument_8hpp.html @@ -73,7 +73,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMDocument_8hpp_source.html b/docs/dom3-api/DOMDocument_8hpp_source.html index 43cc8a40..c5574252 100644 --- a/docs/dom3-api/DOMDocument_8hpp_source.html +++ b/docs/dom3-api/DOMDocument_8hpp_source.html @@ -203,7 +203,7 @@ 00818 00819 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMElement_8hpp.html b/docs/dom3-api/DOMElement_8hpp.html index 7ec1a938..9b257bbe 100644 --- a/docs/dom3-api/DOMElement_8hpp.html +++ b/docs/dom3-api/DOMElement_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMElement_8hpp_source.html b/docs/dom3-api/DOMElement_8hpp_source.html index 0770bdb0..21ba7da9 100644 --- a/docs/dom3-api/DOMElement_8hpp_source.html +++ b/docs/dom3-api/DOMElement_8hpp_source.html @@ -163,7 +163,7 @@ 00527 00528 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMEntityReference_8hpp.html b/docs/dom3-api/DOMEntityReference_8hpp.html index 27263367..57867fac 100644 --- a/docs/dom3-api/DOMEntityReference_8hpp.html +++ b/docs/dom3-api/DOMEntityReference_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMEntityReference_8hpp_source.html b/docs/dom3-api/DOMEntityReference_8hpp_source.html index 57462ab5..325cc173 100644 --- a/docs/dom3-api/DOMEntityReference_8hpp_source.html +++ b/docs/dom3-api/DOMEntityReference_8hpp_source.html @@ -80,7 +80,7 @@ 00095 00096 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMEntity_8hpp.html b/docs/dom3-api/DOMEntity_8hpp.html index 78cc4535..135c3f8c 100644 --- a/docs/dom3-api/DOMEntity_8hpp.html +++ b/docs/dom3-api/DOMEntity_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMEntity_8hpp_source.html b/docs/dom3-api/DOMEntity_8hpp_source.html index bb076344..3bc62112 100644 --- a/docs/dom3-api/DOMEntity_8hpp_source.html +++ b/docs/dom3-api/DOMEntity_8hpp_source.html @@ -96,7 +96,7 @@ 00169 #endif 00170 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMErrorHandler_8hpp.html b/docs/dom3-api/DOMErrorHandler_8hpp.html index fd11b314..406f124a 100644 --- a/docs/dom3-api/DOMErrorHandler_8hpp.html +++ b/docs/dom3-api/DOMErrorHandler_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMErrorHandler_8hpp_source.html b/docs/dom3-api/DOMErrorHandler_8hpp_source.html index d91a8b03..11bfef6b 100644 --- a/docs/dom3-api/DOMErrorHandler_8hpp_source.html +++ b/docs/dom3-api/DOMErrorHandler_8hpp_source.html @@ -85,7 +85,7 @@ 00106 00107 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMError_8hpp.html b/docs/dom3-api/DOMError_8hpp.html index 6bc7d4b0..6a1c306d 100644 --- a/docs/dom3-api/DOMError_8hpp.html +++ b/docs/dom3-api/DOMError_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMError_8hpp_source.html b/docs/dom3-api/DOMError_8hpp_source.html index 13b4126d..2bdf28dd 100644 --- a/docs/dom3-api/DOMError_8hpp_source.html +++ b/docs/dom3-api/DOMError_8hpp_source.html @@ -109,7 +109,7 @@ 00172 00173 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMException_8cpp.html b/docs/dom3-api/DOMException_8cpp.html index d4f98642..6975c4f8 100644 --- a/docs/dom3-api/DOMException_8cpp.html +++ b/docs/dom3-api/DOMException_8cpp.html @@ -47,7 +47,7 @@ Include dependency graph for DOMException.cpp:

-
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMException_8hpp.html b/docs/dom3-api/DOMException_8hpp.html index cafbe033..81f7fde3 100644 --- a/docs/dom3-api/DOMException_8hpp.html +++ b/docs/dom3-api/DOMException_8hpp.html @@ -69,7 +69,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMException_8hpp_source.html b/docs/dom3-api/DOMException_8hpp_source.html index ea1460f2..9da4ce45 100644 --- a/docs/dom3-api/DOMException_8hpp_source.html +++ b/docs/dom3-api/DOMException_8hpp_source.html @@ -134,7 +134,7 @@ 00256 00257 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementationLS_8hpp.html b/docs/dom3-api/DOMImplementationLS_8hpp.html index 84d1ff34..191eb1b4 100644 --- a/docs/dom3-api/DOMImplementationLS_8hpp.html +++ b/docs/dom3-api/DOMImplementationLS_8hpp.html @@ -68,7 +68,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementationLS_8hpp_source.html b/docs/dom3-api/DOMImplementationLS_8hpp_source.html index e177afa1..31c81f03 100644 --- a/docs/dom3-api/DOMImplementationLS_8hpp_source.html +++ b/docs/dom3-api/DOMImplementationLS_8hpp_source.html @@ -112,7 +112,7 @@ 00182 00183 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementationList_8hpp.html b/docs/dom3-api/DOMImplementationList_8hpp.html index a8597494..bc776ae0 100644 --- a/docs/dom3-api/DOMImplementationList_8hpp.html +++ b/docs/dom3-api/DOMImplementationList_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementationList_8hpp_source.html b/docs/dom3-api/DOMImplementationList_8hpp_source.html index ef07a32c..d4688af9 100644 --- a/docs/dom3-api/DOMImplementationList_8hpp_source.html +++ b/docs/dom3-api/DOMImplementationList_8hpp_source.html @@ -95,7 +95,7 @@ 00123 00124 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementationRegistry_8hpp.html b/docs/dom3-api/DOMImplementationRegistry_8hpp.html index 1bf391d5..957cb374 100644 --- a/docs/dom3-api/DOMImplementationRegistry_8hpp.html +++ b/docs/dom3-api/DOMImplementationRegistry_8hpp.html @@ -66,7 +66,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementationRegistry_8hpp_source.html b/docs/dom3-api/DOMImplementationRegistry_8hpp_source.html index 5cdf9e62..2fb084cd 100644 --- a/docs/dom3-api/DOMImplementationRegistry_8hpp_source.html +++ b/docs/dom3-api/DOMImplementationRegistry_8hpp_source.html @@ -75,7 +75,7 @@ 00100 00101 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementationSource_8hpp.html b/docs/dom3-api/DOMImplementationSource_8hpp.html index 8fe612e0..97857732 100644 --- a/docs/dom3-api/DOMImplementationSource_8hpp.html +++ b/docs/dom3-api/DOMImplementationSource_8hpp.html @@ -66,7 +66,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementationSource_8hpp_source.html b/docs/dom3-api/DOMImplementationSource_8hpp_source.html index 20c4fca5..d0cda545 100644 --- a/docs/dom3-api/DOMImplementationSource_8hpp_source.html +++ b/docs/dom3-api/DOMImplementationSource_8hpp_source.html @@ -89,7 +89,7 @@ 00111 00112 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementation_8hpp.html b/docs/dom3-api/DOMImplementation_8hpp.html index 83e65245..2466095d 100644 --- a/docs/dom3-api/DOMImplementation_8hpp.html +++ b/docs/dom3-api/DOMImplementation_8hpp.html @@ -73,7 +73,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMImplementation_8hpp_source.html b/docs/dom3-api/DOMImplementation_8hpp_source.html index 2e580f0c..45be5003 100644 --- a/docs/dom3-api/DOMImplementation_8hpp_source.html +++ b/docs/dom3-api/DOMImplementation_8hpp_source.html @@ -124,7 +124,7 @@ 00248 00249 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSException_8cpp.html b/docs/dom3-api/DOMLSException_8cpp.html index 8aa2fc23..99bdda0f 100644 --- a/docs/dom3-api/DOMLSException_8cpp.html +++ b/docs/dom3-api/DOMLSException_8cpp.html @@ -42,7 +42,7 @@ Include dependency graph for DOMLSException.cpp:

-
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSException_8hpp.html b/docs/dom3-api/DOMLSException_8hpp.html index e437a77f..ea4b06e2 100644 --- a/docs/dom3-api/DOMLSException_8hpp.html +++ b/docs/dom3-api/DOMLSException_8hpp.html @@ -68,7 +68,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSException_8hpp_source.html b/docs/dom3-api/DOMLSException_8hpp_source.html index 00797b96..84bd8473 100644 --- a/docs/dom3-api/DOMLSException_8hpp_source.html +++ b/docs/dom3-api/DOMLSException_8hpp_source.html @@ -91,7 +91,7 @@ 00122 00123 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSInput_8hpp.html b/docs/dom3-api/DOMLSInput_8hpp.html index 7b249afb..5e386956 100644 --- a/docs/dom3-api/DOMLSInput_8hpp.html +++ b/docs/dom3-api/DOMLSInput_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSInput_8hpp_source.html b/docs/dom3-api/DOMLSInput_8hpp_source.html index 8c8b480b..905cdb04 100644 --- a/docs/dom3-api/DOMLSInput_8hpp_source.html +++ b/docs/dom3-api/DOMLSInput_8hpp_source.html @@ -130,7 +130,7 @@ 00273 00274 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSOutput_8hpp.html b/docs/dom3-api/DOMLSOutput_8hpp.html index 7fe1b64a..cd216ee2 100644 --- a/docs/dom3-api/DOMLSOutput_8hpp.html +++ b/docs/dom3-api/DOMLSOutput_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSOutput_8hpp_source.html b/docs/dom3-api/DOMLSOutput_8hpp_source.html index 323f4ca3..794e3cf1 100644 --- a/docs/dom3-api/DOMLSOutput_8hpp_source.html +++ b/docs/dom3-api/DOMLSOutput_8hpp_source.html @@ -107,7 +107,7 @@ 00168 00169 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSParserFilter_8hpp.html b/docs/dom3-api/DOMLSParserFilter_8hpp.html index b3ebafdc..d283d74e 100644 --- a/docs/dom3-api/DOMLSParserFilter_8hpp.html +++ b/docs/dom3-api/DOMLSParserFilter_8hpp.html @@ -68,7 +68,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSParserFilter_8hpp_source.html b/docs/dom3-api/DOMLSParserFilter_8hpp_source.html index 02ed8839..5b4aff77 100644 --- a/docs/dom3-api/DOMLSParserFilter_8hpp_source.html +++ b/docs/dom3-api/DOMLSParserFilter_8hpp_source.html @@ -97,7 +97,7 @@ 00163 00164 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSParser_8hpp.html b/docs/dom3-api/DOMLSParser_8hpp.html index d7617473..7375e79a 100644 --- a/docs/dom3-api/DOMLSParser_8hpp.html +++ b/docs/dom3-api/DOMLSParser_8hpp.html @@ -72,7 +72,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSParser_8hpp_source.html b/docs/dom3-api/DOMLSParser_8hpp_source.html index f44af817..6c54ff4b 100644 --- a/docs/dom3-api/DOMLSParser_8hpp_source.html +++ b/docs/dom3-api/DOMLSParser_8hpp_source.html @@ -164,7 +164,7 @@ 00765 00766 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSResourceResolver_8hpp.html b/docs/dom3-api/DOMLSResourceResolver_8hpp.html index 7d968ac1..5f334700 100644 --- a/docs/dom3-api/DOMLSResourceResolver_8hpp.html +++ b/docs/dom3-api/DOMLSResourceResolver_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSResourceResolver_8hpp_source.html b/docs/dom3-api/DOMLSResourceResolver_8hpp_source.html index e4eedcfb..8788d12d 100644 --- a/docs/dom3-api/DOMLSResourceResolver_8hpp_source.html +++ b/docs/dom3-api/DOMLSResourceResolver_8hpp_source.html @@ -90,7 +90,7 @@ 00142 00143 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSSerializerFilter_8hpp.html b/docs/dom3-api/DOMLSSerializerFilter_8hpp.html index c5705ab5..fe7ecaa1 100644 --- a/docs/dom3-api/DOMLSSerializerFilter_8hpp.html +++ b/docs/dom3-api/DOMLSSerializerFilter_8hpp.html @@ -68,7 +68,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSSerializerFilter_8hpp_source.html b/docs/dom3-api/DOMLSSerializerFilter_8hpp_source.html index 65c9694c..d040c611 100644 --- a/docs/dom3-api/DOMLSSerializerFilter_8hpp_source.html +++ b/docs/dom3-api/DOMLSSerializerFilter_8hpp_source.html @@ -84,7 +84,7 @@ 00106 00107 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSSerializer_8hpp.html b/docs/dom3-api/DOMLSSerializer_8hpp.html index 39d1f613..8e651a19 100644 --- a/docs/dom3-api/DOMLSSerializer_8hpp.html +++ b/docs/dom3-api/DOMLSSerializer_8hpp.html @@ -71,7 +71,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLSSerializer_8hpp_source.html b/docs/dom3-api/DOMLSSerializer_8hpp_source.html index d48c9aa8..982ba4a7 100644 --- a/docs/dom3-api/DOMLSSerializer_8hpp_source.html +++ b/docs/dom3-api/DOMLSSerializer_8hpp_source.html @@ -121,7 +121,7 @@ 00546 00547 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLocator_8hpp.html b/docs/dom3-api/DOMLocator_8hpp.html index 817b3f98..d0bca666 100644 --- a/docs/dom3-api/DOMLocator_8hpp.html +++ b/docs/dom3-api/DOMLocator_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMLocator_8hpp_source.html b/docs/dom3-api/DOMLocator_8hpp_source.html index 4aa61482..7402f95b 100644 --- a/docs/dom3-api/DOMLocator_8hpp_source.html +++ b/docs/dom3-api/DOMLocator_8hpp_source.html @@ -98,7 +98,7 @@ 00134 00135 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMMemoryManager_8hpp.html b/docs/dom3-api/DOMMemoryManager_8hpp.html index 15ddc286..cb146811 100644 --- a/docs/dom3-api/DOMMemoryManager_8hpp.html +++ b/docs/dom3-api/DOMMemoryManager_8hpp.html @@ -54,7 +54,7 @@ -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMMemoryManager_8hpp_source.html b/docs/dom3-api/DOMMemoryManager_8hpp_source.html index 934b1fac..b001f9c0 100644 --- a/docs/dom3-api/DOMMemoryManager_8hpp_source.html +++ b/docs/dom3-api/DOMMemoryManager_8hpp_source.html @@ -118,7 +118,7 @@ 00156 #endif 00157 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNamedNodeMap_8hpp.html b/docs/dom3-api/DOMNamedNodeMap_8hpp.html index bda234c4..de055e87 100644 --- a/docs/dom3-api/DOMNamedNodeMap_8hpp.html +++ b/docs/dom3-api/DOMNamedNodeMap_8hpp.html @@ -81,7 +81,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNamedNodeMap_8hpp_source.html b/docs/dom3-api/DOMNamedNodeMap_8hpp_source.html index b655781d..78e9f84f 100644 --- a/docs/dom3-api/DOMNamedNodeMap_8hpp_source.html +++ b/docs/dom3-api/DOMNamedNodeMap_8hpp_source.html @@ -111,7 +111,7 @@ 00244 00245 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNodeFilter_8hpp.html b/docs/dom3-api/DOMNodeFilter_8hpp.html index b2358aff..c1a924f7 100644 --- a/docs/dom3-api/DOMNodeFilter_8hpp.html +++ b/docs/dom3-api/DOMNodeFilter_8hpp.html @@ -69,7 +69,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNodeFilter_8hpp_source.html b/docs/dom3-api/DOMNodeFilter_8hpp_source.html index ac3b33ff..cec323bd 100644 --- a/docs/dom3-api/DOMNodeFilter_8hpp_source.html +++ b/docs/dom3-api/DOMNodeFilter_8hpp_source.html @@ -109,7 +109,7 @@ 00220 00221 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNodeIterator_8hpp.html b/docs/dom3-api/DOMNodeIterator_8hpp.html index 321c5259..5699731c 100644 --- a/docs/dom3-api/DOMNodeIterator_8hpp.html +++ b/docs/dom3-api/DOMNodeIterator_8hpp.html @@ -84,7 +84,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNodeIterator_8hpp_source.html b/docs/dom3-api/DOMNodeIterator_8hpp_source.html index 0418f7e5..f2793a52 100644 --- a/docs/dom3-api/DOMNodeIterator_8hpp_source.html +++ b/docs/dom3-api/DOMNodeIterator_8hpp_source.html @@ -107,7 +107,7 @@ 00195 00196 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNodeList_8hpp.html b/docs/dom3-api/DOMNodeList_8hpp.html index cf5f9952..431912d3 100644 --- a/docs/dom3-api/DOMNodeList_8hpp.html +++ b/docs/dom3-api/DOMNodeList_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNodeList_8hpp_source.html b/docs/dom3-api/DOMNodeList_8hpp_source.html index 27bed7e7..bc26b2fd 100644 --- a/docs/dom3-api/DOMNodeList_8hpp_source.html +++ b/docs/dom3-api/DOMNodeList_8hpp_source.html @@ -89,7 +89,7 @@ 00111 00112 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNode_8hpp.html b/docs/dom3-api/DOMNode_8hpp.html index 26ea8b5d..03e06eb7 100644 --- a/docs/dom3-api/DOMNode_8hpp.html +++ b/docs/dom3-api/DOMNode_8hpp.html @@ -141,7 +141,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNode_8hpp_source.html b/docs/dom3-api/DOMNode_8hpp_source.html index 37579830..c58f2ba3 100644 --- a/docs/dom3-api/DOMNode_8hpp_source.html +++ b/docs/dom3-api/DOMNode_8hpp_source.html @@ -238,7 +238,7 @@ 00921 00922 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNotation_8hpp.html b/docs/dom3-api/DOMNotation_8hpp.html index b57b97e5..abc4db0a 100644 --- a/docs/dom3-api/DOMNotation_8hpp.html +++ b/docs/dom3-api/DOMNotation_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMNotation_8hpp_source.html b/docs/dom3-api/DOMNotation_8hpp_source.html index 00a1d1a9..6435999d 100644 --- a/docs/dom3-api/DOMNotation_8hpp_source.html +++ b/docs/dom3-api/DOMNotation_8hpp_source.html @@ -92,7 +92,7 @@ 00113 00114 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMPSVITypeInfo_8hpp.html b/docs/dom3-api/DOMPSVITypeInfo_8hpp.html index 7053ec65..f5826b70 100644 --- a/docs/dom3-api/DOMPSVITypeInfo_8hpp.html +++ b/docs/dom3-api/DOMPSVITypeInfo_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMPSVITypeInfo_8hpp_source.html b/docs/dom3-api/DOMPSVITypeInfo_8hpp_source.html index 9a0b2c84..6eaa3e85 100644 --- a/docs/dom3-api/DOMPSVITypeInfo_8hpp_source.html +++ b/docs/dom3-api/DOMPSVITypeInfo_8hpp_source.html @@ -102,7 +102,7 @@ 00114 #endif 00115 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMProcessingInstruction_8hpp.html b/docs/dom3-api/DOMProcessingInstruction_8hpp.html index 26410aa0..a467cb95 100644 --- a/docs/dom3-api/DOMProcessingInstruction_8hpp.html +++ b/docs/dom3-api/DOMProcessingInstruction_8hpp.html @@ -71,7 +71,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMProcessingInstruction_8hpp_source.html b/docs/dom3-api/DOMProcessingInstruction_8hpp_source.html index 63104c8b..52fd320b 100644 --- a/docs/dom3-api/DOMProcessingInstruction_8hpp_source.html +++ b/docs/dom3-api/DOMProcessingInstruction_8hpp_source.html @@ -94,7 +94,7 @@ 00120 #endif 00121 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMRangeException_8cpp.html b/docs/dom3-api/DOMRangeException_8cpp.html index 509ee7a0..9ed85d28 100644 --- a/docs/dom3-api/DOMRangeException_8cpp.html +++ b/docs/dom3-api/DOMRangeException_8cpp.html @@ -42,7 +42,7 @@ Include dependency graph for DOMRangeException.cpp:

-
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMRangeException_8hpp.html b/docs/dom3-api/DOMRangeException_8hpp.html index e6b43b09..b75b4172 100644 --- a/docs/dom3-api/DOMRangeException_8hpp.html +++ b/docs/dom3-api/DOMRangeException_8hpp.html @@ -69,7 +69,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMRangeException_8hpp_source.html b/docs/dom3-api/DOMRangeException_8hpp_source.html index e08c2286..38111ad2 100644 --- a/docs/dom3-api/DOMRangeException_8hpp_source.html +++ b/docs/dom3-api/DOMRangeException_8hpp_source.html @@ -88,7 +88,7 @@ 00113 00114 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMRange_8hpp.html b/docs/dom3-api/DOMRange_8hpp.html index 14e1dcb2..5efa31ad 100644 --- a/docs/dom3-api/DOMRange_8hpp.html +++ b/docs/dom3-api/DOMRange_8hpp.html @@ -66,7 +66,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMRange_8hpp_source.html b/docs/dom3-api/DOMRange_8hpp_source.html index a191fa7f..7ac757db 100644 --- a/docs/dom3-api/DOMRange_8hpp_source.html +++ b/docs/dom3-api/DOMRange_8hpp_source.html @@ -156,7 +156,7 @@ 00529 00530 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMStringList_8hpp.html b/docs/dom3-api/DOMStringList_8hpp.html index ec7197c9..f01b6bb5 100644 --- a/docs/dom3-api/DOMStringList_8hpp.html +++ b/docs/dom3-api/DOMStringList_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMStringList_8hpp_source.html b/docs/dom3-api/DOMStringList_8hpp_source.html index 26002ff3..1de3eeea 100644 --- a/docs/dom3-api/DOMStringList_8hpp_source.html +++ b/docs/dom3-api/DOMStringList_8hpp_source.html @@ -94,7 +94,7 @@ 00130 00131 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMText_8hpp.html b/docs/dom3-api/DOMText_8hpp.html index 757f4ece..f075821b 100644 --- a/docs/dom3-api/DOMText_8hpp.html +++ b/docs/dom3-api/DOMText_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMText_8hpp_source.html b/docs/dom3-api/DOMText_8hpp_source.html index ef064157..fbe44367 100644 --- a/docs/dom3-api/DOMText_8hpp_source.html +++ b/docs/dom3-api/DOMText_8hpp_source.html @@ -97,7 +97,7 @@ 00181 00182 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMTreeWalker_8hpp.html b/docs/dom3-api/DOMTreeWalker_8hpp.html index 197e7b6a..89221024 100644 --- a/docs/dom3-api/DOMTreeWalker_8hpp.html +++ b/docs/dom3-api/DOMTreeWalker_8hpp.html @@ -84,7 +84,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMTreeWalker_8hpp_source.html b/docs/dom3-api/DOMTreeWalker_8hpp_source.html index cb5c8a31..10a8cffd 100644 --- a/docs/dom3-api/DOMTreeWalker_8hpp_source.html +++ b/docs/dom3-api/DOMTreeWalker_8hpp_source.html @@ -122,7 +122,7 @@ 00275 00276 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMTypeInfo_8hpp.html b/docs/dom3-api/DOMTypeInfo_8hpp.html index aa147323..bc845e61 100644 --- a/docs/dom3-api/DOMTypeInfo_8hpp.html +++ b/docs/dom3-api/DOMTypeInfo_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMTypeInfo_8hpp_source.html b/docs/dom3-api/DOMTypeInfo_8hpp_source.html index 107b345c..e7580aaa 100644 --- a/docs/dom3-api/DOMTypeInfo_8hpp_source.html +++ b/docs/dom3-api/DOMTypeInfo_8hpp_source.html @@ -100,7 +100,7 @@ 00192 #endif 00193 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMUserDataHandler_8hpp.html b/docs/dom3-api/DOMUserDataHandler_8hpp.html index a81020e3..e2147d48 100644 --- a/docs/dom3-api/DOMUserDataHandler_8hpp.html +++ b/docs/dom3-api/DOMUserDataHandler_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMUserDataHandler_8hpp_source.html b/docs/dom3-api/DOMUserDataHandler_8hpp_source.html index 761a00de..5504bdb8 100644 --- a/docs/dom3-api/DOMUserDataHandler_8hpp_source.html +++ b/docs/dom3-api/DOMUserDataHandler_8hpp_source.html @@ -100,7 +100,7 @@ 00139 #endif 00140 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathEvaluator_8hpp.html b/docs/dom3-api/DOMXPathEvaluator_8hpp.html index 55fbeee9..02fbe93d 100644 --- a/docs/dom3-api/DOMXPathEvaluator_8hpp.html +++ b/docs/dom3-api/DOMXPathEvaluator_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathEvaluator_8hpp_source.html b/docs/dom3-api/DOMXPathEvaluator_8hpp_source.html index 82b8e22e..0cb90bb9 100644 --- a/docs/dom3-api/DOMXPathEvaluator_8hpp_source.html +++ b/docs/dom3-api/DOMXPathEvaluator_8hpp_source.html @@ -100,7 +100,7 @@ 00179 00180 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathException_8cpp.html b/docs/dom3-api/DOMXPathException_8cpp.html index 90b55277..f86d7eb4 100644 --- a/docs/dom3-api/DOMXPathException_8cpp.html +++ b/docs/dom3-api/DOMXPathException_8cpp.html @@ -45,7 +45,7 @@ Include dependency graph for DOMXPathException.cpp:

-
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathException_8hpp.html b/docs/dom3-api/DOMXPathException_8hpp.html index ed6240de..4dbbd60b 100644 --- a/docs/dom3-api/DOMXPathException_8hpp.html +++ b/docs/dom3-api/DOMXPathException_8hpp.html @@ -68,7 +68,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathException_8hpp_source.html b/docs/dom3-api/DOMXPathException_8hpp_source.html index 0a435632..d436c3b8 100644 --- a/docs/dom3-api/DOMXPathException_8hpp_source.html +++ b/docs/dom3-api/DOMXPathException_8hpp_source.html @@ -89,7 +89,7 @@ 00104 00105 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathExpression_8hpp.html b/docs/dom3-api/DOMXPathExpression_8hpp.html index 9ce46ff2..5b2a0b09 100644 --- a/docs/dom3-api/DOMXPathExpression_8hpp.html +++ b/docs/dom3-api/DOMXPathExpression_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathExpression_8hpp_source.html b/docs/dom3-api/DOMXPathExpression_8hpp_source.html index fbab86df..8c712a67 100644 --- a/docs/dom3-api/DOMXPathExpression_8hpp_source.html +++ b/docs/dom3-api/DOMXPathExpression_8hpp_source.html @@ -94,7 +94,7 @@ 00128 00129 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathNSResolver_8hpp.html b/docs/dom3-api/DOMXPathNSResolver_8hpp.html index b27b6252..59d5fad9 100644 --- a/docs/dom3-api/DOMXPathNSResolver_8hpp.html +++ b/docs/dom3-api/DOMXPathNSResolver_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathNSResolver_8hpp_source.html b/docs/dom3-api/DOMXPathNSResolver_8hpp_source.html index 41fee45e..a7e2ba0d 100644 --- a/docs/dom3-api/DOMXPathNSResolver_8hpp_source.html +++ b/docs/dom3-api/DOMXPathNSResolver_8hpp_source.html @@ -94,7 +94,7 @@ 00129 00130 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathNamespace_8hpp.html b/docs/dom3-api/DOMXPathNamespace_8hpp.html index 57ff5638..50f7d8b6 100644 --- a/docs/dom3-api/DOMXPathNamespace_8hpp.html +++ b/docs/dom3-api/DOMXPathNamespace_8hpp.html @@ -69,7 +69,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathNamespace_8hpp_source.html b/docs/dom3-api/DOMXPathNamespace_8hpp_source.html index 5a661e5a..0eecabbb 100644 --- a/docs/dom3-api/DOMXPathNamespace_8hpp_source.html +++ b/docs/dom3-api/DOMXPathNamespace_8hpp_source.html @@ -91,7 +91,7 @@ 00114 00115 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathResult_8hpp.html b/docs/dom3-api/DOMXPathResult_8hpp.html index a167c4f5..b3e54f4e 100644 --- a/docs/dom3-api/DOMXPathResult_8hpp.html +++ b/docs/dom3-api/DOMXPathResult_8hpp.html @@ -67,7 +67,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOMXPathResult_8hpp_source.html b/docs/dom3-api/DOMXPathResult_8hpp_source.html index 190ad65a..c6403d28 100644 --- a/docs/dom3-api/DOMXPathResult_8hpp_source.html +++ b/docs/dom3-api/DOMXPathResult_8hpp_source.html @@ -138,7 +138,7 @@ 00350 00351 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOM_8hpp.html b/docs/dom3-api/DOM_8hpp.html index d722059d..0787344e 100644 --- a/docs/dom3-api/DOM_8hpp.html +++ b/docs/dom3-api/DOM_8hpp.html @@ -95,7 +95,7 @@ -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/DOM_8hpp_source.html b/docs/dom3-api/DOM_8hpp_source.html index 7dd2ac04..df48cbd3 100644 --- a/docs/dom3-api/DOM_8hpp_source.html +++ b/docs/dom3-api/DOM_8hpp_source.html @@ -110,7 +110,7 @@ 00086 00087 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/MemoryManager_8hpp.html b/docs/dom3-api/MemoryManager_8hpp.html index de4e3fd9..b87ec59b 100644 --- a/docs/dom3-api/MemoryManager_8hpp.html +++ b/docs/dom3-api/MemoryManager_8hpp.html @@ -68,7 +68,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/MemoryManager_8hpp_source.html b/docs/dom3-api/MemoryManager_8hpp_source.html index 7c93e804..adcaa77e 100644 --- a/docs/dom3-api/MemoryManager_8hpp_source.html +++ b/docs/dom3-api/MemoryManager_8hpp_source.html @@ -103,7 +103,7 @@ 00124 00125 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/PlatformUtils_8hpp.html b/docs/dom3-api/PlatformUtils_8hpp.html index b8b02321..ace165bd 100644 --- a/docs/dom3-api/PlatformUtils_8hpp.html +++ b/docs/dom3-api/PlatformUtils_8hpp.html @@ -74,7 +74,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/PlatformUtils_8hpp_source.html b/docs/dom3-api/PlatformUtils_8hpp_source.html index e417297c..50514e81 100644 --- a/docs/dom3-api/PlatformUtils_8hpp_source.html +++ b/docs/dom3-api/PlatformUtils_8hpp_source.html @@ -328,7 +328,7 @@ 00838 00839 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/StDOMNode_8hpp.html b/docs/dom3-api/StDOMNode_8hpp.html index bab66a8e..a73655c0 100644 --- a/docs/dom3-api/StDOMNode_8hpp.html +++ b/docs/dom3-api/StDOMNode_8hpp.html @@ -67,7 +67,7 @@ Include dependency graph for StDOMNode.hpp: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/StDOMNode_8hpp_source.html b/docs/dom3-api/StDOMNode_8hpp_source.html index 911010ed..792e235e 100644 --- a/docs/dom3-api/StDOMNode_8hpp_source.html +++ b/docs/dom3-api/StDOMNode_8hpp_source.html @@ -118,7 +118,7 @@ 00094 #endif 00095 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XPath2MemoryManager_8hpp.html b/docs/dom3-api/XPath2MemoryManager_8hpp.html index 2492db31..11e17a97 100644 --- a/docs/dom3-api/XPath2MemoryManager_8hpp.html +++ b/docs/dom3-api/XPath2MemoryManager_8hpp.html @@ -120,7 +120,7 @@ This graph shows which files directly or indirectly include this file: -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XPath2MemoryManager_8hpp_source.html b/docs/dom3-api/XPath2MemoryManager_8hpp_source.html index a04eb1b9..3481c274 100644 --- a/docs/dom3-api/XPath2MemoryManager_8hpp_source.html +++ b/docs/dom3-api/XPath2MemoryManager_8hpp_source.html @@ -440,7 +440,7 @@ 00422 #endif //__XPATH2MEMORYMANAGER_HPP 00423 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XPath2Result_8hpp.html b/docs/dom3-api/XPath2Result_8hpp.html index dff314a3..79953884 100644 --- a/docs/dom3-api/XPath2Result_8hpp.html +++ b/docs/dom3-api/XPath2Result_8hpp.html @@ -51,7 +51,7 @@ This graph shows which files directly or indirectly include this file:  The XPathResult2 interface represents the result of the evaluation of an XPath 2.0 expression within the context of a particular node. More...
-
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XPath2Result_8hpp_source.html b/docs/dom3-api/XPath2Result_8hpp_source.html index f4f4c36d..d4eb76de 100644 --- a/docs/dom3-api/XPath2Result_8hpp_source.html +++ b/docs/dom3-api/XPath2Result_8hpp_source.html @@ -98,7 +98,7 @@ 00217 00218 #endif -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XQillaExpression_8hpp.html b/docs/dom3-api/XQillaExpression_8hpp.html index 30c4ea71..a7391fb2 100644 --- a/docs/dom3-api/XQillaExpression_8hpp.html +++ b/docs/dom3-api/XQillaExpression_8hpp.html @@ -53,7 +53,7 @@ This graph shows which files directly or indirectly include this file:  The XQillaExpression interface extends the DOMXPathExpression interface, providing the ability to release the object. More...
-
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XQillaExpression_8hpp_source.html b/docs/dom3-api/XQillaExpression_8hpp_source.html index c4b1a011..29558bb3 100644 --- a/docs/dom3-api/XQillaExpression_8hpp_source.html +++ b/docs/dom3-api/XQillaExpression_8hpp_source.html @@ -66,7 +66,7 @@ 00058 #endif 00059 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XQillaNSResolver_8hpp.html b/docs/dom3-api/XQillaNSResolver_8hpp.html index 2c4924c8..62f983ee 100644 --- a/docs/dom3-api/XQillaNSResolver_8hpp.html +++ b/docs/dom3-api/XQillaNSResolver_8hpp.html @@ -54,7 +54,7 @@ This graph shows which files directly or indirectly include this file:

-
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XQillaNSResolver_8hpp_source.html b/docs/dom3-api/XQillaNSResolver_8hpp_source.html index 8802998e..497418f4 100644 --- a/docs/dom3-api/XQillaNSResolver_8hpp_source.html +++ b/docs/dom3-api/XQillaNSResolver_8hpp_source.html @@ -81,7 +81,7 @@ 00101 00102 #endif //__XQILLANSRESOLVER_HPP -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XQillaPlatformUtils_8hpp.html b/docs/dom3-api/XQillaPlatformUtils_8hpp.html index 50b703d1..84f5eb7f 100644 --- a/docs/dom3-api/XQillaPlatformUtils_8hpp.html +++ b/docs/dom3-api/XQillaPlatformUtils_8hpp.html @@ -52,7 +52,7 @@ This graph shows which files directly or indirectly include this file:

-
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/XQillaPlatformUtils_8hpp_source.html b/docs/dom3-api/XQillaPlatformUtils_8hpp_source.html index 599524dc..d2f7c847 100644 --- a/docs/dom3-api/XQillaPlatformUtils_8hpp_source.html +++ b/docs/dom3-api/XQillaPlatformUtils_8hpp_source.html @@ -65,7 +65,7 @@ 00063 #endif 00064 -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/annotated.html b/docs/dom3-api/annotated.html index 68dd11f3..f5c396da 100644 --- a/docs/dom3-api/annotated.html +++ b/docs/dom3-api/annotated.html @@ -97,7 +97,7 @@ XQillaPlatformUtilsStatic utility methods for initializing and terminating the XQilla and Xerces environments -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/classAutoDeallocate-members.html b/docs/dom3-api/classAutoDeallocate-members.html index 6a4e5d84..9008b456 100644 --- a/docs/dom3-api/classAutoDeallocate-members.html +++ b/docs/dom3-api/classAutoDeallocate-members.html @@ -38,7 +38,7 @@ swap(TYPE *p)AutoDeallocate< TYPE > [inline] ~AutoDeallocate()AutoDeallocate< TYPE > [inline] -
Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
diff --git a/docs/dom3-api/classAutoDeallocate.html b/docs/dom3-api/classAutoDeallocate.html index 8a447c85..b6d938bf 100644 --- a/docs/dom3-api/classAutoDeallocate.html +++ b/docs/dom3-api/classAutoDeallocate.html @@ -270,7 +270,7 @@ template<class TYPE>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classAutoDelete-members.html b/docs/dom3-api/classAutoDelete-members.html index 1bd4b239..6ba7bc9a 100644 --- a/docs/dom3-api/classAutoDelete-members.html +++ b/docs/dom3-api/classAutoDelete-members.html @@ -37,7 +37,7 @@ swap(TYPE *p)AutoDelete< TYPE > [inline] ~AutoDelete()AutoDelete< TYPE > [inline] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classAutoDelete.html b/docs/dom3-api/classAutoDelete.html index f7e033cc..290201c1 100644 --- a/docs/dom3-api/classAutoDelete.html +++ b/docs/dom3-api/classAutoDelete.html @@ -225,7 +225,7 @@ template<class TYPE>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classAutoDeleteArray-members.html b/docs/dom3-api/classAutoDeleteArray-members.html index dae6d4e0..2f53d3b4 100644 --- a/docs/dom3-api/classAutoDeleteArray-members.html +++ b/docs/dom3-api/classAutoDeleteArray-members.html @@ -37,7 +37,7 @@ swap(TYPE *p)AutoDeleteArray< TYPE > [inline] ~AutoDeleteArray()AutoDeleteArray< TYPE > [inline] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classAutoDeleteArray.html b/docs/dom3-api/classAutoDeleteArray.html index e2efd993..8875eb3a 100644 --- a/docs/dom3-api/classAutoDeleteArray.html +++ b/docs/dom3-api/classAutoDeleteArray.html @@ -225,7 +225,7 @@ template<class TYPE>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classAutoRelease-members.html b/docs/dom3-api/classAutoRelease-members.html index 1196e1d7..1d8b76c9 100644 --- a/docs/dom3-api/classAutoRelease-members.html +++ b/docs/dom3-api/classAutoRelease-members.html @@ -37,7 +37,7 @@ swap(TYPE *p)AutoRelease< TYPE > [inline] ~AutoRelease()AutoRelease< TYPE > [inline] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classAutoRelease.html b/docs/dom3-api/classAutoRelease.html index b4cbaa83..4ef2b9f9 100644 --- a/docs/dom3-api/classAutoRelease.html +++ b/docs/dom3-api/classAutoRelease.html @@ -229,7 +229,7 @@ template<class TYPE>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXPath2MemoryManager-members.html b/docs/dom3-api/classXPath2MemoryManager-members.html index e0f87287..83ae1e28 100644 --- a/docs/dom3-api/classXPath2MemoryManager-members.html +++ b/docs/dom3-api/classXPath2MemoryManager-members.html @@ -47,7 +47,7 @@ ~MemoryManager()xercesc::MemoryManager [inline, virtual] ~XPath2MemoryManager()XPath2MemoryManager [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXPath2MemoryManager.html b/docs/dom3-api/classXPath2MemoryManager.html index a0a1dcb1..08813394 100644 --- a/docs/dom3-api/classXPath2MemoryManager.html +++ b/docs/dom3-api/classXPath2MemoryManager.html @@ -362,7 +362,7 @@ Inheritance diagram for XPath2MemoryManager:
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXPath2Result-members.html b/docs/dom3-api/classXPath2Result-members.html index 5a53207c..731ad8a8 100644 --- a/docs/dom3-api/classXPath2Result-members.html +++ b/docs/dom3-api/classXPath2Result-members.html @@ -47,7 +47,7 @@ XPath2Result()XPath2Result [inline, protected] ~XPath2Result()XPath2Result [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXPath2Result.html b/docs/dom3-api/classXPath2Result.html index eb10d3e1..53ead533 100644 --- a/docs/dom3-api/classXPath2Result.html +++ b/docs/dom3-api/classXPath2Result.html @@ -487,7 +487,7 @@ The result is a sequence as defined by XPath 2.0 that will be accessed as a snap
  • XPath2Result.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXQillaAllocator-members.html b/docs/dom3-api/classXQillaAllocator-members.html index 5964981d..703241d4 100644 --- a/docs/dom3-api/classXQillaAllocator-members.html +++ b/docs/dom3-api/classXQillaAllocator-members.html @@ -49,7 +49,7 @@ XQillaAllocator(xercesc::MemoryManager *memMgr)XQillaAllocator< _Tp > [inline] XQillaAllocator(const XQillaAllocator< _Tp > &o)XQillaAllocator< _Tp > [inline] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXQillaAllocator.html b/docs/dom3-api/classXQillaAllocator.html index e3ca000a..c6e0b86f 100644 --- a/docs/dom3-api/classXQillaAllocator.html +++ b/docs/dom3-api/classXQillaAllocator.html @@ -483,7 +483,7 @@ template<class _Tp>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXQillaExpression-members.html b/docs/dom3-api/classXQillaExpression-members.html index 28916d08..9d01143f 100644 --- a/docs/dom3-api/classXQillaExpression-members.html +++ b/docs/dom3-api/classXQillaExpression-members.html @@ -32,7 +32,7 @@ release()=0XQillaExpression [pure virtual] ~DOMXPathExpression()xercesc::DOMXPathExpression [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXQillaExpression.html b/docs/dom3-api/classXQillaExpression.html index 1bc73fa6..fe7cd24d 100644 --- a/docs/dom3-api/classXQillaExpression.html +++ b/docs/dom3-api/classXQillaExpression.html @@ -79,7 +79,7 @@ Inheritance diagram for XQillaExpression:
  • XQillaExpression.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXQillaNSResolver-members.html b/docs/dom3-api/classXQillaNSResolver-members.html index 6615177d..993a69f0 100644 --- a/docs/dom3-api/classXQillaNSResolver-members.html +++ b/docs/dom3-api/classXQillaNSResolver-members.html @@ -35,7 +35,7 @@ XQillaNSResolver()XQillaNSResolver [inline, protected] ~DOMXPathNSResolver()xercesc::DOMXPathNSResolver [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXQillaNSResolver.html b/docs/dom3-api/classXQillaNSResolver.html index 22556953..d54d335f 100644 --- a/docs/dom3-api/classXQillaNSResolver.html +++ b/docs/dom3-api/classXQillaNSResolver.html @@ -206,7 +206,7 @@ Inheritance diagram for XQillaNSResolver:
  • XQillaNSResolver.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXQillaPlatformUtils-members.html b/docs/dom3-api/classXQillaPlatformUtils-members.html index 11f1ad2b..92d0221a 100644 --- a/docs/dom3-api/classXQillaPlatformUtils-members.html +++ b/docs/dom3-api/classXQillaPlatformUtils-members.html @@ -31,7 +31,7 @@ initialize(xercesc::MemoryManager *memMgr=0)XQillaPlatformUtils [static] terminate()XQillaPlatformUtils [static] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classXQillaPlatformUtils.html b/docs/dom3-api/classXQillaPlatformUtils.html index be5b4651..aac5a5cb 100644 --- a/docs/dom3-api/classXQillaPlatformUtils.html +++ b/docs/dom3-api/classXQillaPlatformUtils.html @@ -114,7 +114,7 @@
  • XQillaPlatformUtils.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classes.html b/docs/dom3-api/classes.html index eb50cb59..8684fb0b 100644 --- a/docs/dom3-api/classes.html +++ b/docs/dom3-api/classes.html @@ -36,7 +36,7 @@ DOMDocumentTraversal (xercesc)   DOMNodeFilter (xercesc)   StDOMNode (xercesc)   DOMDocumentType (xercesc)   DOMNodeIterator (xercesc)   
      X  
    DOMElement (xercesc)   DOMNodeList (xercesc)   XMLDeleter (xercesc)   DOMEntity (xercesc)   DOMNotation (xercesc)   XMLPlatformUtils (xercesc)   DOMEntityReference (xercesc)   DOMProcessingInstruction (xercesc)   XPath2MemoryManager   DOMError (xercesc)   DOMPSVITypeInfo (xercesc)   XPath2Result   DOMErrorHandler (xercesc)   DOMRange (xercesc)   XQillaAllocator   DOMException (xercesc)   DOMRangeException (xercesc)   XQillaExpression   DOMImplementation (xercesc)   DOMStringList (xercesc)   XQillaNSResolver   DOMImplementationList (xercesc)   DOMText (xercesc)   XQillaPlatformUtils   DOMImplementationLS (xercesc)   
    A | D | M | R | S | X
    -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMAttr-members.html b/docs/dom3-api/classxercesc_1_1DOMAttr-members.html index 512a07a2..072693fc 100644 --- a/docs/dom3-api/classxercesc_1_1DOMAttr-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMAttr-members.html @@ -99,7 +99,7 @@ ~DOMAttr()xercesc::DOMAttr [inline, virtual] ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMAttr.html b/docs/dom3-api/classxercesc_1_1DOMAttr.html index a4deefc6..805a16d7 100644 --- a/docs/dom3-api/classxercesc_1_1DOMAttr.html +++ b/docs/dom3-api/classxercesc_1_1DOMAttr.html @@ -297,7 +297,7 @@ Inheritance diagram for xercesc::DOMAttr:
  • DOMAttr.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMCDATASection-members.html b/docs/dom3-api/classxercesc_1_1DOMCDATASection-members.html index a525e352..bd417072 100644 --- a/docs/dom3-api/classxercesc_1_1DOMCDATASection-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMCDATASection-members.html @@ -111,7 +111,7 @@ ~DOMNode()xercesc::DOMNode [inline, virtual] ~DOMText()xercesc::DOMText [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMCDATASection.html b/docs/dom3-api/classxercesc_1_1DOMCDATASection.html index 5957bc2f..b2bf69e7 100644 --- a/docs/dom3-api/classxercesc_1_1DOMCDATASection.html +++ b/docs/dom3-api/classxercesc_1_1DOMCDATASection.html @@ -122,7 +122,7 @@ Inheritance diagram for xercesc::DOMCDATASection:
  • DOMCDATASection.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMCharacterData-members.html b/docs/dom3-api/classxercesc_1_1DOMCharacterData-members.html index bcb41734..bec3ac00 100644 --- a/docs/dom3-api/classxercesc_1_1DOMCharacterData-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMCharacterData-members.html @@ -100,7 +100,7 @@ ~DOMCharacterData()xercesc::DOMCharacterData [inline, virtual] ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMCharacterData.html b/docs/dom3-api/classxercesc_1_1DOMCharacterData.html index 59772f7f..89fab1bb 100644 --- a/docs/dom3-api/classxercesc_1_1DOMCharacterData.html +++ b/docs/dom3-api/classxercesc_1_1DOMCharacterData.html @@ -434,7 +434,7 @@ NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  • DOMCharacterData.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMComment-members.html b/docs/dom3-api/classxercesc_1_1DOMComment-members.html index 0031c7b5..3c5370e2 100644 --- a/docs/dom3-api/classxercesc_1_1DOMComment-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMComment-members.html @@ -102,7 +102,7 @@ ~DOMComment()xercesc::DOMComment [inline, virtual] ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMComment.html b/docs/dom3-api/classxercesc_1_1DOMComment.html index cd5afde9..4937599e 100644 --- a/docs/dom3-api/classxercesc_1_1DOMComment.html +++ b/docs/dom3-api/classxercesc_1_1DOMComment.html @@ -100,7 +100,7 @@ Inheritance diagram for xercesc::DOMComment:
  • DOMComment.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMConfiguration-members.html b/docs/dom3-api/classxercesc_1_1DOMConfiguration-members.html index 0572b4dc..63f5c1b5 100644 --- a/docs/dom3-api/classxercesc_1_1DOMConfiguration-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMConfiguration-members.html @@ -36,7 +36,7 @@ setParameter(const XMLCh *name, bool value)=0xercesc::DOMConfiguration [pure virtual] ~DOMConfiguration()xercesc::DOMConfiguration [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMConfiguration.html b/docs/dom3-api/classxercesc_1_1DOMConfiguration.html index 2538d7ff..77c5f9a7 100644 --- a/docs/dom3-api/classxercesc_1_1DOMConfiguration.html +++ b/docs/dom3-api/classxercesc_1_1DOMConfiguration.html @@ -349,7 +349,7 @@
  • DOMConfiguration.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocument-members.html b/docs/dom3-api/classxercesc_1_1DOMDocument-members.html index 3e4ed9c4..6c57ef4e 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocument-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocument-members.html @@ -139,7 +139,7 @@ ~DOMNode()xercesc::DOMNode [inline, virtual] ~DOMXPathEvaluator()xercesc::DOMXPathEvaluator [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocument.html b/docs/dom3-api/classxercesc_1_1DOMDocument.html index b111972c..1d79c441 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocument.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocument.html @@ -1350,7 +1350,7 @@ Beware that when the DOMDocument.hpp -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocumentFragment-members.html b/docs/dom3-api/classxercesc_1_1DOMDocumentFragment-members.html index c6afd40e..e047ce90 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocumentFragment-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocumentFragment-members.html @@ -91,7 +91,7 @@ ~DOMDocumentFragment()xercesc::DOMDocumentFragment [inline, virtual] ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocumentFragment.html b/docs/dom3-api/classxercesc_1_1DOMDocumentFragment.html index 8698f813..94d70ab8 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocumentFragment.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocumentFragment.html @@ -103,7 +103,7 @@ Inheritance diagram for xercesc::DOMDocumentFragment:
  • DOMDocumentFragment.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocumentRange-members.html b/docs/dom3-api/classxercesc_1_1DOMDocumentRange-members.html index 2b70a4fa..afbb8e80 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocumentRange-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocumentRange-members.html @@ -31,7 +31,7 @@ DOMDocumentRange()xercesc::DOMDocumentRange [inline, protected] ~DOMDocumentRange()xercesc::DOMDocumentRange [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocumentRange.html b/docs/dom3-api/classxercesc_1_1DOMDocumentRange.html index 9eefe2f8..052ff3e3 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocumentRange.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocumentRange.html @@ -123,7 +123,7 @@ Inheritance diagram for xercesc::DOMDocumentRange:
  • DOMDocumentRange.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocumentTraversal-members.html b/docs/dom3-api/classxercesc_1_1DOMDocumentTraversal-members.html index e43137d4..b86612e9 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocumentTraversal-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocumentTraversal-members.html @@ -32,7 +32,7 @@ DOMDocumentTraversal()xercesc::DOMDocumentTraversal [inline, protected] ~DOMDocumentTraversal()xercesc::DOMDocumentTraversal [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocumentTraversal.html b/docs/dom3-api/classxercesc_1_1DOMDocumentTraversal.html index 2760f66f..98f13e9f 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocumentTraversal.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocumentTraversal.html @@ -218,7 +218,7 @@ Inheritance diagram for xercesc::DOMDocumentTraversal:
  • DOMDocumentTraversal.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocumentType-members.html b/docs/dom3-api/classxercesc_1_1DOMDocumentType-members.html index c6937c2d..497f5076 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocumentType-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocumentType-members.html @@ -97,7 +97,7 @@ ~DOMDocumentType()xercesc::DOMDocumentType [inline, virtual] ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMDocumentType.html b/docs/dom3-api/classxercesc_1_1DOMDocumentType.html index 937669b9..51f9ca3d 100644 --- a/docs/dom3-api/classxercesc_1_1DOMDocumentType.html +++ b/docs/dom3-api/classxercesc_1_1DOMDocumentType.html @@ -253,7 +253,7 @@ The DOM Level 2 does not support editing notations, therefore notationsDOMDocumentType.hpp -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMElement-members.html b/docs/dom3-api/classxercesc_1_1DOMElement-members.html index acadb632..b29d4e78 100644 --- a/docs/dom3-api/classxercesc_1_1DOMElement-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMElement-members.html @@ -117,7 +117,7 @@ ~DOMElement()xercesc::DOMElement [inline, virtual] ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMElement.html b/docs/dom3-api/classxercesc_1_1DOMElement.html index 696c1f27..765fceab 100644 --- a/docs/dom3-api/classxercesc_1_1DOMElement.html +++ b/docs/dom3-api/classxercesc_1_1DOMElement.html @@ -1022,7 +1022,7 @@ NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  • DOMElement.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMEntity-members.html b/docs/dom3-api/classxercesc_1_1DOMEntity-members.html index a04ea5bd..d34fedf7 100644 --- a/docs/dom3-api/classxercesc_1_1DOMEntity-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMEntity-members.html @@ -98,7 +98,7 @@ ~DOMEntity()xercesc::DOMEntity [inline, virtual] ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMEntity.html b/docs/dom3-api/classxercesc_1_1DOMEntity.html index a892c979..67b42cd6 100644 --- a/docs/dom3-api/classxercesc_1_1DOMEntity.html +++ b/docs/dom3-api/classxercesc_1_1DOMEntity.html @@ -270,7 +270,7 @@ Inheritance diagram for xercesc::DOMEntity:
  • DOMEntity.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMEntityReference-members.html b/docs/dom3-api/classxercesc_1_1DOMEntityReference-members.html index df4842d0..9159b10d 100644 --- a/docs/dom3-api/classxercesc_1_1DOMEntityReference-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMEntityReference-members.html @@ -92,7 +92,7 @@ ~DOMEntityReference()xercesc::DOMEntityReference [inline, virtual] ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMEntityReference.html b/docs/dom3-api/classxercesc_1_1DOMEntityReference.html index 10e1a9af..c7303f92 100644 --- a/docs/dom3-api/classxercesc_1_1DOMEntityReference.html +++ b/docs/dom3-api/classxercesc_1_1DOMEntityReference.html @@ -121,7 +121,7 @@ Inheritance diagram for xercesc::DOMEntityReference:
  • DOMEntityReference.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMError-members.html b/docs/dom3-api/classxercesc_1_1DOMError-members.html index 38f2199a..b104966f 100644 --- a/docs/dom3-api/classxercesc_1_1DOMError-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMError-members.html @@ -40,7 +40,7 @@ getType() const =0xercesc::DOMError [pure virtual] ~DOMError()xercesc::DOMError [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMError.html b/docs/dom3-api/classxercesc_1_1DOMError.html index a8f89e11..21677dde 100644 --- a/docs/dom3-api/classxercesc_1_1DOMError.html +++ b/docs/dom3-api/classxercesc_1_1DOMError.html @@ -272,7 +272,7 @@
  • DOMError.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMErrorHandler-members.html b/docs/dom3-api/classxercesc_1_1DOMErrorHandler-members.html index 5d63c9e8..39d26c05 100644 --- a/docs/dom3-api/classxercesc_1_1DOMErrorHandler-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMErrorHandler-members.html @@ -31,7 +31,7 @@ handleError(const DOMError &domError)=0xercesc::DOMErrorHandler [pure virtual] ~DOMErrorHandler()xercesc::DOMErrorHandler [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMErrorHandler.html b/docs/dom3-api/classxercesc_1_1DOMErrorHandler.html index 47eea396..b95c8490 100644 --- a/docs/dom3-api/classxercesc_1_1DOMErrorHandler.html +++ b/docs/dom3-api/classxercesc_1_1DOMErrorHandler.html @@ -130,7 +130,7 @@
  • DOMErrorHandler.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMException-members.html b/docs/dom3-api/classxercesc_1_1DOMException-members.html index 51cfd20b..26f898a6 100644 --- a/docs/dom3-api/classxercesc_1_1DOMException-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMException-members.html @@ -54,7 +54,7 @@ WRONG_DOCUMENT_ERR enum valuexercesc::DOMException ~DOMException()xercesc::DOMException [virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMException.html b/docs/dom3-api/classxercesc_1_1DOMException.html index 9355acf1..c1bc165a 100644 --- a/docs/dom3-api/classxercesc_1_1DOMException.html +++ b/docs/dom3-api/classxercesc_1_1DOMException.html @@ -364,7 +364,7 @@ Inheritance diagram for xercesc::DOMException:
  • DOMException.cpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementation-members.html b/docs/dom3-api/classxercesc_1_1DOMImplementation-members.html index bd18f159..bc3855d5 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementation-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementation-members.html @@ -46,7 +46,7 @@ ~DOMImplementation()xercesc::DOMImplementation [inline, virtual] ~DOMImplementationLS()xercesc::DOMImplementationLS [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementation.html b/docs/dom3-api/classxercesc_1_1DOMImplementation.html index 5709a49d..d66cafd3 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementation.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementation.html @@ -404,7 +404,7 @@ NOT_SUPPORTED_ERR: May be raised by DOM implementations which do not support the
  • DOMImplementation.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementationLS-members.html b/docs/dom3-api/classxercesc_1_1DOMImplementationLS-members.html index 3f0a27b1..5b0c4e9a 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementationLS-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementationLS-members.html @@ -37,7 +37,7 @@ MODE_SYNCHRONOUS enum valuexercesc::DOMImplementationLS ~DOMImplementationLS()xercesc::DOMImplementationLS [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementationLS.html b/docs/dom3-api/classxercesc_1_1DOMImplementationLS.html index fadc7833..d1f47839 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementationLS.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementationLS.html @@ -274,7 +274,7 @@ Inheritance diagram for xercesc::DOMImplementationLS:
  • DOMImplementationLS.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementationList-members.html b/docs/dom3-api/classxercesc_1_1DOMImplementationList-members.html index fe04dde0..2b34d3cf 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementationList-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementationList-members.html @@ -33,7 +33,7 @@ release()=0xercesc::DOMImplementationList [pure virtual] ~DOMImplementationList()xercesc::DOMImplementationList [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementationList.html b/docs/dom3-api/classxercesc_1_1DOMImplementationList.html index 2d1c0a41..34657ef4 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementationList.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementationList.html @@ -175,7 +175,7 @@
  • DOMImplementationList.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementationRegistry-members.html b/docs/dom3-api/classxercesc_1_1DOMImplementationRegistry-members.html index b169e943..c04f74c2 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementationRegistry-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementationRegistry-members.html @@ -31,7 +31,7 @@ getDOMImplementation(const XMLCh *features)xercesc::DOMImplementationRegistry [static] getDOMImplementationList(const XMLCh *features)xercesc::DOMImplementationRegistry [static] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementationRegistry.html b/docs/dom3-api/classxercesc_1_1DOMImplementationRegistry.html index 1d6fc315..f9e0a6c0 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementationRegistry.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementationRegistry.html @@ -132,7 +132,7 @@
  • DOMImplementationRegistry.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementationSource-members.html b/docs/dom3-api/classxercesc_1_1DOMImplementationSource-members.html index 5d7052e8..6d39f48d 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementationSource-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementationSource-members.html @@ -32,7 +32,7 @@ getDOMImplementationList(const XMLCh *features) const =0xercesc::DOMImplementationSource [pure virtual] ~DOMImplementationSource()xercesc::DOMImplementationSource [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMImplementationSource.html b/docs/dom3-api/classxercesc_1_1DOMImplementationSource.html index 908e9c68..b6a61f64 100644 --- a/docs/dom3-api/classxercesc_1_1DOMImplementationSource.html +++ b/docs/dom3-api/classxercesc_1_1DOMImplementationSource.html @@ -150,7 +150,7 @@
  • DOMImplementationSource.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSException-members.html b/docs/dom3-api/classxercesc_1_1DOMLSException-members.html index 04930dbb..feec1d04 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSException-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSException-members.html @@ -61,7 +61,7 @@ ~DOMException()xercesc::DOMException [virtual] ~DOMLSException()xercesc::DOMLSException [virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSException.html b/docs/dom3-api/classxercesc_1_1DOMLSException.html index 460e865d..898e8cd4 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSException.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSException.html @@ -205,7 +205,7 @@ Inheritance diagram for xercesc::DOMLSException:
  • DOMLSException.cpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSInput-members.html b/docs/dom3-api/classxercesc_1_1DOMLSInput-members.html index 6885b75a..457089d7 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSInput-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSInput-members.html @@ -45,7 +45,7 @@ setSystemId(const XMLCh *const systemId)=0xercesc::DOMLSInput [pure virtual] ~DOMLSInput()xercesc::DOMLSInput [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSInput.html b/docs/dom3-api/classxercesc_1_1DOMLSInput.html index b013277d..b82b1c6a 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSInput.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSInput.html @@ -493,7 +493,7 @@
  • DOMLSInput.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSOutput-members.html b/docs/dom3-api/classxercesc_1_1DOMLSOutput-members.html index 9c0e925f..99951af2 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSOutput-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSOutput-members.html @@ -37,7 +37,7 @@ setSystemId(const XMLCh *const systemId)=0xercesc::DOMLSOutput [pure virtual] ~DOMLSOutput()xercesc::DOMLSOutput [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSOutput.html b/docs/dom3-api/classxercesc_1_1DOMLSOutput.html index 7c8aad87..5b851f49 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSOutput.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSOutput.html @@ -279,7 +279,7 @@
  • DOMLSOutput.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSParser-members.html b/docs/dom3-api/classxercesc_1_1DOMLSParser-members.html index 1debd5c2..c5e9e986 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSParser-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSParser-members.html @@ -56,7 +56,7 @@ setFilter(DOMLSParserFilter *const filter)=0xercesc::DOMLSParser [pure virtual] ~DOMLSParser()xercesc::DOMLSParser [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSParser.html b/docs/dom3-api/classxercesc_1_1DOMLSParser.html index 5981e768..25824eaa 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSParser.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSParser.html @@ -876,7 +876,7 @@ WFXMLScanner: a scanner that cannot perform any type validation, only well-forme
  • DOMLSParser.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSParserFilter-members.html b/docs/dom3-api/classxercesc_1_1DOMLSParserFilter-members.html index 79a13ede..1a93729e 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSParserFilter-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSParserFilter-members.html @@ -38,7 +38,7 @@ startElement(DOMElement *node)=0xercesc::DOMLSParserFilter [pure virtual] ~DOMLSParserFilter()xercesc::DOMLSParserFilter [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSParserFilter.html b/docs/dom3-api/classxercesc_1_1DOMLSParserFilter.html index c3f89639..2d066557 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSParserFilter.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSParserFilter.html @@ -218,7 +218,7 @@
  • DOMLSParserFilter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSResourceResolver-members.html b/docs/dom3-api/classxercesc_1_1DOMLSResourceResolver-members.html index 164e3b28..e5924ba8 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSResourceResolver-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSResourceResolver-members.html @@ -31,7 +31,7 @@ resolveResource(const XMLCh *const resourceType, const XMLCh *const namespaceUri, const XMLCh *const publicId, const XMLCh *const systemId, const XMLCh *const baseURI)=0xercesc::DOMLSResourceResolver [pure virtual] ~DOMLSResourceResolver()xercesc::DOMLSResourceResolver [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSResourceResolver.html b/docs/dom3-api/classxercesc_1_1DOMLSResourceResolver.html index 3703ea20..5089142a 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSResourceResolver.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSResourceResolver.html @@ -167,7 +167,7 @@
  • DOMLSResourceResolver.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSSerializer-members.html b/docs/dom3-api/classxercesc_1_1DOMLSSerializer-members.html index 2a228e28..17a5a51d 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSSerializer-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSSerializer-members.html @@ -39,7 +39,7 @@ writeToURI(const DOMNode *nodeToWrite, const XMLCh *uri)=0xercesc::DOMLSSerializer [pure virtual] ~DOMLSSerializer()xercesc::DOMLSSerializer [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSSerializer.html b/docs/dom3-api/classxercesc_1_1DOMLSSerializer.html index 55c3439a..c477699a 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSSerializer.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSSerializer.html @@ -392,7 +392,7 @@ The default value for this attribute is null.

  • DOMLSSerializer.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSSerializerFilter-members.html b/docs/dom3-api/classxercesc_1_1DOMLSSerializerFilter-members.html index 9ff9be5b..00c8d12c 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSSerializerFilter-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSSerializerFilter-members.html @@ -53,7 +53,7 @@ ~DOMLSSerializerFilter()xercesc::DOMLSSerializerFilter [inline, virtual] ~DOMNodeFilter()xercesc::DOMNodeFilter [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLSSerializerFilter.html b/docs/dom3-api/classxercesc_1_1DOMLSSerializerFilter.html index e9e92a25..6cae191c 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLSSerializerFilter.html +++ b/docs/dom3-api/classxercesc_1_1DOMLSSerializerFilter.html @@ -145,7 +145,7 @@ Inheritance diagram for xercesc::DOMLSSerializerFilter:
  • DOMLSSerializerFilter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLocator-members.html b/docs/dom3-api/classxercesc_1_1DOMLocator-members.html index 11ac760e..cc811176 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLocator-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMLocator-members.html @@ -36,7 +36,7 @@ getUtf16Offset() const =0xercesc::DOMLocator [pure virtual] ~DOMLocator()xercesc::DOMLocator [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMLocator.html b/docs/dom3-api/classxercesc_1_1DOMLocator.html index e065fb5c..fa462309 100644 --- a/docs/dom3-api/classxercesc_1_1DOMLocator.html +++ b/docs/dom3-api/classxercesc_1_1DOMLocator.html @@ -230,7 +230,7 @@
  • DOMLocator.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMMemoryManager-members.html b/docs/dom3-api/classxercesc_1_1DOMMemoryManager-members.html index f028859c..fcdb7f07 100644 --- a/docs/dom3-api/classxercesc_1_1DOMMemoryManager-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMMemoryManager-members.html @@ -50,7 +50,7 @@ TEXT_OBJECT enum valuexercesc::DOMMemoryManager ~DOMMemoryManager()xercesc::DOMMemoryManager [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMMemoryManager.html b/docs/dom3-api/classxercesc_1_1DOMMemoryManager.html index 75e5423c..98071fd1 100644 --- a/docs/dom3-api/classxercesc_1_1DOMMemoryManager.html +++ b/docs/dom3-api/classxercesc_1_1DOMMemoryManager.html @@ -344,7 +344,7 @@
  • DOMMemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNamedNodeMap-members.html b/docs/dom3-api/classxercesc_1_1DOMNamedNodeMap-members.html index 18f34de5..7c6d31c2 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNamedNodeMap-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMNamedNodeMap-members.html @@ -38,7 +38,7 @@ setNamedItemNS(DOMNode *arg)=0xercesc::DOMNamedNodeMap [pure virtual] ~DOMNamedNodeMap()xercesc::DOMNamedNodeMap [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNamedNodeMap.html b/docs/dom3-api/classxercesc_1_1DOMNamedNodeMap.html index 035c42fd..59908f2d 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNamedNodeMap.html +++ b/docs/dom3-api/classxercesc_1_1DOMNamedNodeMap.html @@ -387,7 +387,7 @@ INUSE_ATTRIBUTE_ERR: Raised if arg is an DOMNamedNodeMap.hpp -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNode-members.html b/docs/dom3-api/classxercesc_1_1DOMNode-members.html index 5e02d198..fe3c27aa 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNode-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMNode-members.html @@ -89,7 +89,7 @@ TEXT_NODE enum valuexercesc::DOMNode ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNode.html b/docs/dom3-api/classxercesc_1_1DOMNode.html index 7cd28c84..6abd603d 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNode.html +++ b/docs/dom3-api/classxercesc_1_1DOMNode.html @@ -1490,7 +1490,7 @@ NOT_FOUND_ERR: Raised if oldChild is not a child of this node. DOMNode.hpp -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNodeFilter-members.html b/docs/dom3-api/classxercesc_1_1DOMNodeFilter-members.html index 93891f3a..bd8edb66 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNodeFilter-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMNodeFilter-members.html @@ -50,7 +50,7 @@ ShowTypeMasks enum namexercesc::DOMNodeFilter ~DOMNodeFilter()xercesc::DOMNodeFilter [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNodeFilter.html b/docs/dom3-api/classxercesc_1_1DOMNodeFilter.html index 166718d0..199d1a10 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNodeFilter.html +++ b/docs/dom3-api/classxercesc_1_1DOMNodeFilter.html @@ -275,7 +275,7 @@ Inheritance diagram for xercesc::DOMNodeFilter:
  • DOMNodeFilter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNodeIterator-members.html b/docs/dom3-api/classxercesc_1_1DOMNodeIterator-members.html index 8f101203..19b1219b 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNodeIterator-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMNodeIterator-members.html @@ -39,7 +39,7 @@ release()=0xercesc::DOMNodeIterator [pure virtual] ~DOMNodeIterator()xercesc::DOMNodeIterator [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNodeIterator.html b/docs/dom3-api/classxercesc_1_1DOMNodeIterator.html index aa91dc95..41685b64 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNodeIterator.html +++ b/docs/dom3-api/classxercesc_1_1DOMNodeIterator.html @@ -317,7 +317,7 @@
  • DOMNodeIterator.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNodeList-members.html b/docs/dom3-api/classxercesc_1_1DOMNodeList-members.html index 168ff59a..6f812b9c 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNodeList-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMNodeList-members.html @@ -32,7 +32,7 @@ item(XMLSize_t index) const =0xercesc::DOMNodeList [pure virtual] ~DOMNodeList()xercesc::DOMNodeList [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNodeList.html b/docs/dom3-api/classxercesc_1_1DOMNodeList.html index aa8503ff..68bfc8cf 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNodeList.html +++ b/docs/dom3-api/classxercesc_1_1DOMNodeList.html @@ -152,7 +152,7 @@
  • DOMNodeList.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNotation-members.html b/docs/dom3-api/classxercesc_1_1DOMNotation-members.html index 7a6d51f6..e1c3bcea 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNotation-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMNotation-members.html @@ -94,7 +94,7 @@ ~DOMNode()xercesc::DOMNode [inline, virtual] ~DOMNotation()xercesc::DOMNotation [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMNotation.html b/docs/dom3-api/classxercesc_1_1DOMNotation.html index bb764911..9dc1cf51 100644 --- a/docs/dom3-api/classxercesc_1_1DOMNotation.html +++ b/docs/dom3-api/classxercesc_1_1DOMNotation.html @@ -173,7 +173,7 @@ Inheritance diagram for xercesc::DOMNotation:
  • DOMNotation.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMPSVITypeInfo-members.html b/docs/dom3-api/classxercesc_1_1DOMPSVITypeInfo-members.html index fe094383..bf49a2c4 100644 --- a/docs/dom3-api/classxercesc_1_1DOMPSVITypeInfo-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMPSVITypeInfo-members.html @@ -46,7 +46,7 @@ PSVIProperty enum namexercesc::DOMPSVITypeInfo ~DOMPSVITypeInfo()xercesc::DOMPSVITypeInfo [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMPSVITypeInfo.html b/docs/dom3-api/classxercesc_1_1DOMPSVITypeInfo.html index f1bb410b..737d52c4 100644 --- a/docs/dom3-api/classxercesc_1_1DOMPSVITypeInfo.html +++ b/docs/dom3-api/classxercesc_1_1DOMPSVITypeInfo.html @@ -205,7 +205,7 @@
  • DOMPSVITypeInfo.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMProcessingInstruction-members.html b/docs/dom3-api/classxercesc_1_1DOMProcessingInstruction-members.html index ae031747..e1f3a511 100644 --- a/docs/dom3-api/classxercesc_1_1DOMProcessingInstruction-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMProcessingInstruction-members.html @@ -95,7 +95,7 @@ ~DOMNode()xercesc::DOMNode [inline, virtual] ~DOMProcessingInstruction()xercesc::DOMProcessingInstruction [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMProcessingInstruction.html b/docs/dom3-api/classxercesc_1_1DOMProcessingInstruction.html index 3a935d8e..3a6dc7c5 100644 --- a/docs/dom3-api/classxercesc_1_1DOMProcessingInstruction.html +++ b/docs/dom3-api/classxercesc_1_1DOMProcessingInstruction.html @@ -206,7 +206,7 @@ Inheritance diagram for xercesc::DOMProcessingInstruction:
  • DOMProcessingInstruction.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMRange-members.html b/docs/dom3-api/classxercesc_1_1DOMRange-members.html index 98e8938a..b47fea3b 100644 --- a/docs/dom3-api/classxercesc_1_1DOMRange-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMRange-members.html @@ -61,7 +61,7 @@ toString() const =0xercesc::DOMRange [pure virtual] ~DOMRange()xercesc::DOMRange [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMRange.html b/docs/dom3-api/classxercesc_1_1DOMRange.html index c6b29374..c40f1590 100644 --- a/docs/dom3-api/classxercesc_1_1DOMRange.html +++ b/docs/dom3-api/classxercesc_1_1DOMRange.html @@ -1032,7 +1032,7 @@ INVALID_NODE_TYPE_ERR: Raised if node is an DOMRange.hpp -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMRangeException-members.html b/docs/dom3-api/classxercesc_1_1DOMRangeException-members.html index fbce6020..de85b580 100644 --- a/docs/dom3-api/classxercesc_1_1DOMRangeException-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMRangeException-members.html @@ -61,7 +61,7 @@ ~DOMException()xercesc::DOMException [virtual] ~DOMRangeException()xercesc::DOMRangeException [virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMRangeException.html b/docs/dom3-api/classxercesc_1_1DOMRangeException.html index 815165d0..887e7c00 100644 --- a/docs/dom3-api/classxercesc_1_1DOMRangeException.html +++ b/docs/dom3-api/classxercesc_1_1DOMRangeException.html @@ -212,7 +212,7 @@ Inheritance diagram for xercesc::DOMRangeException:
  • DOMRangeException.cpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMStringList-members.html b/docs/dom3-api/classxercesc_1_1DOMStringList-members.html index a547b89b..b5e05450 100644 --- a/docs/dom3-api/classxercesc_1_1DOMStringList-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMStringList-members.html @@ -34,7 +34,7 @@ release()=0xercesc::DOMStringList [pure virtual] ~DOMStringList()xercesc::DOMStringList [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMStringList.html b/docs/dom3-api/classxercesc_1_1DOMStringList.html index 503467c1..7e67ba24 100644 --- a/docs/dom3-api/classxercesc_1_1DOMStringList.html +++ b/docs/dom3-api/classxercesc_1_1DOMStringList.html @@ -199,7 +199,7 @@
  • DOMStringList.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMText-members.html b/docs/dom3-api/classxercesc_1_1DOMText-members.html index 7e7bc350..0edf115c 100644 --- a/docs/dom3-api/classxercesc_1_1DOMText-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMText-members.html @@ -108,7 +108,7 @@ ~DOMNode()xercesc::DOMNode [inline, virtual] ~DOMText()xercesc::DOMText [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMText.html b/docs/dom3-api/classxercesc_1_1DOMText.html index 0268699c..52c2a4a2 100644 --- a/docs/dom3-api/classxercesc_1_1DOMText.html +++ b/docs/dom3-api/classxercesc_1_1DOMText.html @@ -275,7 +275,7 @@ NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
  • DOMText.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMTreeWalker-members.html b/docs/dom3-api/classxercesc_1_1DOMTreeWalker-members.html index a9d52399..d12ff2d6 100644 --- a/docs/dom3-api/classxercesc_1_1DOMTreeWalker-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMTreeWalker-members.html @@ -45,7 +45,7 @@ setCurrentNode(DOMNode *currentNode)=0xercesc::DOMTreeWalker [pure virtual] ~DOMTreeWalker()xercesc::DOMTreeWalker [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMTreeWalker.html b/docs/dom3-api/classxercesc_1_1DOMTreeWalker.html index bf5c92f4..28e301d5 100644 --- a/docs/dom3-api/classxercesc_1_1DOMTreeWalker.html +++ b/docs/dom3-api/classxercesc_1_1DOMTreeWalker.html @@ -455,7 +455,7 @@ Alterations to the DOM tree may cause the current node to no longer be accepted
  • DOMTreeWalker.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMTypeInfo-members.html b/docs/dom3-api/classxercesc_1_1DOMTypeInfo-members.html index 338fa8da..526aa119 100644 --- a/docs/dom3-api/classxercesc_1_1DOMTypeInfo-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMTypeInfo-members.html @@ -38,7 +38,7 @@ isDerivedFrom(const XMLCh *typeNamespaceArg, const XMLCh *typeNameArg, DerivationMethods derivationMethod) const =0xercesc::DOMTypeInfo [pure virtual] ~DOMTypeInfo()xercesc::DOMTypeInfo [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMTypeInfo.html b/docs/dom3-api/classxercesc_1_1DOMTypeInfo.html index a2400860..07ff3b30 100644 --- a/docs/dom3-api/classxercesc_1_1DOMTypeInfo.html +++ b/docs/dom3-api/classxercesc_1_1DOMTypeInfo.html @@ -241,7 +241,7 @@
  • DOMTypeInfo.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMUserDataHandler-members.html b/docs/dom3-api/classxercesc_1_1DOMUserDataHandler-members.html index 95eb7d6e..ef9ffc1c 100644 --- a/docs/dom3-api/classxercesc_1_1DOMUserDataHandler-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMUserDataHandler-members.html @@ -37,7 +37,7 @@ NODE_RENAMED enum valuexercesc::DOMUserDataHandler ~DOMUserDataHandler()xercesc::DOMUserDataHandler [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMUserDataHandler.html b/docs/dom3-api/classxercesc_1_1DOMUserDataHandler.html index 9c92b13e..8a1c3ff1 100644 --- a/docs/dom3-api/classxercesc_1_1DOMUserDataHandler.html +++ b/docs/dom3-api/classxercesc_1_1DOMUserDataHandler.html @@ -209,7 +209,7 @@
  • DOMUserDataHandler.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathEvaluator-members.html b/docs/dom3-api/classxercesc_1_1DOMXPathEvaluator-members.html index 8e3cc871..bb548cc3 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathEvaluator-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathEvaluator-members.html @@ -33,7 +33,7 @@ evaluate(const XMLCh *expression, const DOMNode *contextNode, const DOMXPathNSResolver *resolver, DOMXPathResult::ResultType type, DOMXPathResult *result)=0xercesc::DOMXPathEvaluator [pure virtual] ~DOMXPathEvaluator()xercesc::DOMXPathEvaluator [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathEvaluator.html b/docs/dom3-api/classxercesc_1_1DOMXPathEvaluator.html index a8700659..57d67858 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathEvaluator.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathEvaluator.html @@ -249,7 +249,7 @@ Inheritance diagram for xercesc::DOMXPathEvaluator:
  • DOMXPathEvaluator.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathException-members.html b/docs/dom3-api/classxercesc_1_1DOMXPathException-members.html index 3a209eee..50a9e904 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathException-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathException-members.html @@ -61,7 +61,7 @@ ~DOMException()xercesc::DOMException [virtual] ~DOMXPathException()xercesc::DOMXPathException [virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathException.html b/docs/dom3-api/classxercesc_1_1DOMXPathException.html index 18e61050..a0574bea 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathException.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathException.html @@ -214,7 +214,7 @@ NO_RESULT_ERROR There is no current result in the result object.

  • DOMXPathException.cpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathExpression-members.html b/docs/dom3-api/classxercesc_1_1DOMXPathExpression-members.html index b3f83174..dfa0cb06 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathExpression-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathExpression-members.html @@ -32,7 +32,7 @@ release()=0xercesc::DOMXPathExpression [pure virtual] ~DOMXPathExpression()xercesc::DOMXPathExpression [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathExpression.html b/docs/dom3-api/classxercesc_1_1DOMXPathExpression.html index d39c0590..8e917170 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathExpression.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathExpression.html @@ -183,7 +183,7 @@ Inheritance diagram for xercesc::DOMXPathExpression:
  • DOMXPathExpression.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathNSResolver-members.html b/docs/dom3-api/classxercesc_1_1DOMXPathNSResolver-members.html index 23f669b5..2650d413 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathNSResolver-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathNSResolver-members.html @@ -34,7 +34,7 @@ release()=0xercesc::DOMXPathNSResolver [pure virtual] ~DOMXPathNSResolver()xercesc::DOMXPathNSResolver [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathNSResolver.html b/docs/dom3-api/classxercesc_1_1DOMXPathNSResolver.html index becab7b3..65798e94 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathNSResolver.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathNSResolver.html @@ -235,7 +235,7 @@ Inheritance diagram for xercesc::DOMXPathNSResolver:
  • DOMXPathNSResolver.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathNamespace-members.html b/docs/dom3-api/classxercesc_1_1DOMXPathNamespace-members.html index dc608f36..f653e4c5 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathNamespace-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathNamespace-members.html @@ -94,7 +94,7 @@ ~DOMNode()xercesc::DOMNode [inline, virtual] ~DOMXPathNamespace()xercesc::DOMXPathNamespace [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathNamespace.html b/docs/dom3-api/classxercesc_1_1DOMXPathNamespace.html index 2863c3e3..c81677e5 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathNamespace.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathNamespace.html @@ -150,7 +150,7 @@ Inheritance diagram for xercesc::DOMXPathNamespace:
  • DOMXPathNamespace.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathResult-members.html b/docs/dom3-api/classxercesc_1_1DOMXPathResult-members.html index 7b381558..c04f4fef 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathResult-members.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathResult-members.html @@ -57,7 +57,7 @@ UNORDERED_NODE_SNAPSHOT_TYPE enum valuexercesc::DOMXPathResult ~DOMXPathResult()xercesc::DOMXPathResult [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1DOMXPathResult.html b/docs/dom3-api/classxercesc_1_1DOMXPathResult.html index ba41957c..05601755 100644 --- a/docs/dom3-api/classxercesc_1_1DOMXPathResult.html +++ b/docs/dom3-api/classxercesc_1_1DOMXPathResult.html @@ -550,7 +550,7 @@
  • DOMXPathResult.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1MemoryManager-members.html b/docs/dom3-api/classxercesc_1_1MemoryManager-members.html index 8651c35d..f8142956 100644 --- a/docs/dom3-api/classxercesc_1_1MemoryManager-members.html +++ b/docs/dom3-api/classxercesc_1_1MemoryManager-members.html @@ -33,7 +33,7 @@ MemoryManager()xercesc::MemoryManager [inline, protected] ~MemoryManager()xercesc::MemoryManager [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1MemoryManager.html b/docs/dom3-api/classxercesc_1_1MemoryManager.html index 369d767e..1bc596eb 100644 --- a/docs/dom3-api/classxercesc_1_1MemoryManager.html +++ b/docs/dom3-api/classxercesc_1_1MemoryManager.html @@ -194,7 +194,7 @@ Inheritance diagram for xercesc::MemoryManager:
  • MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1StDOMNode-members.html b/docs/dom3-api/classxercesc_1_1StDOMNode-members.html index da87a716..e55da278 100644 --- a/docs/dom3-api/classxercesc_1_1StDOMNode-members.html +++ b/docs/dom3-api/classxercesc_1_1StDOMNode-members.html @@ -39,7 +39,7 @@ StDOMNode(const StDOMNode &stNode)xercesc::StDOMNode< T > [inline] ~StDOMNode()xercesc::StDOMNode< T > [inline] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1StDOMNode.html b/docs/dom3-api/classxercesc_1_1StDOMNode.html index dab30ed4..8655772d 100644 --- a/docs/dom3-api/classxercesc_1_1StDOMNode.html +++ b/docs/dom3-api/classxercesc_1_1StDOMNode.html @@ -269,7 +269,7 @@ template<class T >
  • StDOMNode.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1XMLDeleter-members.html b/docs/dom3-api/classxercesc_1_1XMLDeleter-members.html index 89498bc3..b700ad7d 100644 --- a/docs/dom3-api/classxercesc_1_1XMLDeleter-members.html +++ b/docs/dom3-api/classxercesc_1_1XMLDeleter-members.html @@ -30,7 +30,7 @@ XMLDeleter()xercesc::XMLDeleter [inline, protected] ~XMLDeleter()xercesc::XMLDeleter [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1XMLDeleter.html b/docs/dom3-api/classxercesc_1_1XMLDeleter.html index 66dfc776..c63af23e 100644 --- a/docs/dom3-api/classxercesc_1_1XMLDeleter.html +++ b/docs/dom3-api/classxercesc_1_1XMLDeleter.html @@ -77,7 +77,7 @@
  • PlatformUtils.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1XMLPlatformUtils-members.html b/docs/dom3-api/classxercesc_1_1XMLPlatformUtils-members.html index 66e2c6ae..b67cf61b 100644 --- a/docs/dom3-api/classxercesc_1_1XMLPlatformUtils-members.html +++ b/docs/dom3-api/classxercesc_1_1XMLPlatformUtils-members.html @@ -73,7 +73,7 @@ weavePaths(const XMLCh *const basePath, const XMLCh *const relativePath, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)xercesc::XMLPlatformUtils [static] writeBufferToFile(FileHandle const theFile, XMLSize_t toWrite, const XMLByte *const toFlush, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)xercesc::XMLPlatformUtils [static] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/classxercesc_1_1XMLPlatformUtils.html b/docs/dom3-api/classxercesc_1_1XMLPlatformUtils.html index 06d3dd86..2b375578 100644 --- a/docs/dom3-api/classxercesc_1_1XMLPlatformUtils.html +++ b/docs/dom3-api/classxercesc_1_1XMLPlatformUtils.html @@ -1525,7 +1525,7 @@
  • PlatformUtils.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/dom-basic_8cpp-example.html b/docs/dom3-api/dom-basic_8cpp-example.html index 90cca6fc..67d8e8f2 100644 --- a/docs/dom3-api/dom-basic_8cpp-example.html +++ b/docs/dom3-api/dom-basic_8cpp-example.html @@ -56,7 +56,7 @@ XERCES_CPP_NAMESPACE_USE; return 0; } -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/dom-context-item_8cpp-example.html b/docs/dom3-api/dom-context-item_8cpp-example.html index 4d3eba5a..8f8f836d 100644 --- a/docs/dom3-api/dom-context-item_8cpp-example.html +++ b/docs/dom3-api/dom-context-item_8cpp-example.html @@ -77,7 +77,7 @@ XERCES_CPP_NAMESPACE_USE; return 0; } -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/dom-resolver_8cpp-example.html b/docs/dom3-api/dom-resolver_8cpp-example.html index ec9ee411..759121f3 100644 --- a/docs/dom3-api/dom-resolver_8cpp-example.html +++ b/docs/dom3-api/dom-resolver_8cpp-example.html @@ -166,7 +166,7 @@ XERCES_CPP_NAMESPACE_USE; return 0; } -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/examples.html b/docs/dom3-api/examples.html index bc543b75..ea68f9c6 100644 --- a/docs/dom3-api/examples.html +++ b/docs/dom3-api/examples.html @@ -27,7 +27,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/files.html b/docs/dom3-api/files.html index 0802e0b6..895625d7 100644 --- a/docs/dom3-api/files.html +++ b/docs/dom3-api/files.html @@ -93,7 +93,7 @@ XQillaPlatformUtils.hpp [code] -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions.html b/docs/dom3-api/functions.html index 9308c415..5c4a580e 100644 --- a/docs/dom3-api/functions.html +++ b/docs/dom3-api/functions.html @@ -74,7 +74,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x61.html b/docs/dom3-api/functions_0x61.html index f6d46d41..36e1f536 100644 --- a/docs/dom3-api/functions_0x61.html +++ b/docs/dom3-api/functions_0x61.html @@ -153,7 +153,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x62.html b/docs/dom3-api/functions_0x62.html index 80a05a1b..d54ac7a7 100644 --- a/docs/dom3-api/functions_0x62.html +++ b/docs/dom3-api/functions_0x62.html @@ -74,7 +74,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x63.html b/docs/dom3-api/functions_0x63.html index e8f8b288..9f462b66 100644 --- a/docs/dom3-api/functions_0x63.html +++ b/docs/dom3-api/functions_0x63.html @@ -215,7 +215,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x64.html b/docs/dom3-api/functions_0x64.html index f2ef2804..7132c7b3 100644 --- a/docs/dom3-api/functions_0x64.html +++ b/docs/dom3-api/functions_0x64.html @@ -314,7 +314,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x65.html b/docs/dom3-api/functions_0x65.html index 59d7b8f5..62cd4b5c 100644 --- a/docs/dom3-api/functions_0x65.html +++ b/docs/dom3-api/functions_0x65.html @@ -112,7 +112,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x66.html b/docs/dom3-api/functions_0x66.html index b1ed722b..c2f8fa70 100644 --- a/docs/dom3-api/functions_0x66.html +++ b/docs/dom3-api/functions_0x66.html @@ -135,7 +135,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x67.html b/docs/dom3-api/functions_0x67.html index 944e952e..cf0112dd 100644 --- a/docs/dom3-api/functions_0x67.html +++ b/docs/dom3-api/functions_0x67.html @@ -478,7 +478,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x68.html b/docs/dom3-api/functions_0x68.html index 80e13fea..bd4ebafd 100644 --- a/docs/dom3-api/functions_0x68.html +++ b/docs/dom3-api/functions_0x68.html @@ -92,7 +92,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x69.html b/docs/dom3-api/functions_0x69.html index 12fe24c9..d6343107 100644 --- a/docs/dom3-api/functions_0x69.html +++ b/docs/dom3-api/functions_0x69.html @@ -163,7 +163,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x6c.html b/docs/dom3-api/functions_0x6c.html index a9e15c23..3d78e271 100644 --- a/docs/dom3-api/functions_0x6c.html +++ b/docs/dom3-api/functions_0x6c.html @@ -96,7 +96,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x6d.html b/docs/dom3-api/functions_0x6d.html index 8c9a465d..74aa25a3 100644 --- a/docs/dom3-api/functions_0x6d.html +++ b/docs/dom3-api/functions_0x6d.html @@ -92,7 +92,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x6e.html b/docs/dom3-api/functions_0x6e.html index ad21cd05..7d164d2d 100644 --- a/docs/dom3-api/functions_0x6e.html +++ b/docs/dom3-api/functions_0x6e.html @@ -129,7 +129,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x6f.html b/docs/dom3-api/functions_0x6f.html index ad0dd89d..1f06d766 100644 --- a/docs/dom3-api/functions_0x6f.html +++ b/docs/dom3-api/functions_0x6f.html @@ -121,7 +121,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x70.html b/docs/dom3-api/functions_0x70.html index bfcc9926..b3945bc5 100644 --- a/docs/dom3-api/functions_0x70.html +++ b/docs/dom3-api/functions_0x70.html @@ -144,7 +144,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x72.html b/docs/dom3-api/functions_0x72.html index 3c4ec0e0..eae0cd22 100644 --- a/docs/dom3-api/functions_0x72.html +++ b/docs/dom3-api/functions_0x72.html @@ -154,7 +154,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x73.html b/docs/dom3-api/functions_0x73.html index b7901bf0..4a307d04 100644 --- a/docs/dom3-api/functions_0x73.html +++ b/docs/dom3-api/functions_0x73.html @@ -293,7 +293,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x74.html b/docs/dom3-api/functions_0x74.html index c72cbe58..0b45fcf5 100644 --- a/docs/dom3-api/functions_0x74.html +++ b/docs/dom3-api/functions_0x74.html @@ -89,7 +89,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x75.html b/docs/dom3-api/functions_0x75.html index 7ebca5b1..6318508b 100644 --- a/docs/dom3-api/functions_0x75.html +++ b/docs/dom3-api/functions_0x75.html @@ -77,7 +77,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x76.html b/docs/dom3-api/functions_0x76.html index 9bf7bd38..237d78b2 100644 --- a/docs/dom3-api/functions_0x76.html +++ b/docs/dom3-api/functions_0x76.html @@ -74,7 +74,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x77.html b/docs/dom3-api/functions_0x77.html index afd12ce3..f54408c5 100644 --- a/docs/dom3-api/functions_0x77.html +++ b/docs/dom3-api/functions_0x77.html @@ -86,7 +86,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x78.html b/docs/dom3-api/functions_0x78.html index de11002b..d32bfe53 100644 --- a/docs/dom3-api/functions_0x78.html +++ b/docs/dom3-api/functions_0x78.html @@ -86,7 +86,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_0x7e.html b/docs/dom3-api/functions_0x7e.html index cacef5a8..7ed294a7 100644 --- a/docs/dom3-api/functions_0x7e.html +++ b/docs/dom3-api/functions_0x7e.html @@ -248,7 +248,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_enum.html b/docs/dom3-api/functions_enum.html index 6be4e2fc..36c976b6 100644 --- a/docs/dom3-api/functions_enum.html +++ b/docs/dom3-api/functions_enum.html @@ -93,7 +93,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_eval.html b/docs/dom3-api/functions_eval.html index 1e0aaa61..fad84d94 100644 --- a/docs/dom3-api/functions_eval.html +++ b/docs/dom3-api/functions_eval.html @@ -509,7 +509,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func.html b/docs/dom3-api/functions_func.html index d05253e6..85515c97 100644 --- a/docs/dom3-api/functions_func.html +++ b/docs/dom3-api/functions_func.html @@ -116,7 +116,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x63.html b/docs/dom3-api/functions_func_0x63.html index 9dcf81c8..57f08d10 100644 --- a/docs/dom3-api/functions_func_0x63.html +++ b/docs/dom3-api/functions_func_0x63.html @@ -187,7 +187,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x64.html b/docs/dom3-api/functions_func_0x64.html index 888b4c01..2e985c23 100644 --- a/docs/dom3-api/functions_func_0x64.html +++ b/docs/dom3-api/functions_func_0x64.html @@ -239,7 +239,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x65.html b/docs/dom3-api/functions_func_0x65.html index d36e4b4a..4cc5f69f 100644 --- a/docs/dom3-api/functions_func_0x65.html +++ b/docs/dom3-api/functions_func_0x65.html @@ -75,7 +75,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x66.html b/docs/dom3-api/functions_func_0x66.html index e3515706..90b0de3c 100644 --- a/docs/dom3-api/functions_func_0x66.html +++ b/docs/dom3-api/functions_func_0x66.html @@ -71,7 +71,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x67.html b/docs/dom3-api/functions_func_0x67.html index 265ea37d..2520635a 100644 --- a/docs/dom3-api/functions_func_0x67.html +++ b/docs/dom3-api/functions_func_0x67.html @@ -475,7 +475,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x68.html b/docs/dom3-api/functions_func_0x68.html index 5c496937..1b3124aa 100644 --- a/docs/dom3-api/functions_func_0x68.html +++ b/docs/dom3-api/functions_func_0x68.html @@ -86,7 +86,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x69.html b/docs/dom3-api/functions_func_0x69.html index 41640a2a..da422baa 100644 --- a/docs/dom3-api/functions_func_0x69.html +++ b/docs/dom3-api/functions_func_0x69.html @@ -130,7 +130,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x6c.html b/docs/dom3-api/functions_func_0x6c.html index 9d47e4bf..3b83db71 100644 --- a/docs/dom3-api/functions_func_0x6c.html +++ b/docs/dom3-api/functions_func_0x6c.html @@ -90,7 +90,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x6d.html b/docs/dom3-api/functions_func_0x6d.html index a20a8de3..8b1ccdfa 100644 --- a/docs/dom3-api/functions_func_0x6d.html +++ b/docs/dom3-api/functions_func_0x6d.html @@ -80,7 +80,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x6e.html b/docs/dom3-api/functions_func_0x6e.html index a515aaa5..abb9ce8b 100644 --- a/docs/dom3-api/functions_func_0x6e.html +++ b/docs/dom3-api/functions_func_0x6e.html @@ -78,7 +78,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x6f.html b/docs/dom3-api/functions_func_0x6f.html index b2561f17..4e37197a 100644 --- a/docs/dom3-api/functions_func_0x6f.html +++ b/docs/dom3-api/functions_func_0x6f.html @@ -108,7 +108,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x70.html b/docs/dom3-api/functions_func_0x70.html index 6fb7ab8b..1a2b9812 100644 --- a/docs/dom3-api/functions_func_0x70.html +++ b/docs/dom3-api/functions_func_0x70.html @@ -87,7 +87,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x72.html b/docs/dom3-api/functions_func_0x72.html index ecdb6e58..fe6c3742 100644 --- a/docs/dom3-api/functions_func_0x72.html +++ b/docs/dom3-api/functions_func_0x72.html @@ -141,7 +141,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x73.html b/docs/dom3-api/functions_func_0x73.html index 13e94372..84703b7b 100644 --- a/docs/dom3-api/functions_func_0x73.html +++ b/docs/dom3-api/functions_func_0x73.html @@ -221,7 +221,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x74.html b/docs/dom3-api/functions_func_0x74.html index fbd08db5..56a0b06e 100644 --- a/docs/dom3-api/functions_func_0x74.html +++ b/docs/dom3-api/functions_func_0x74.html @@ -74,7 +74,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x75.html b/docs/dom3-api/functions_func_0x75.html index 1daa6c1f..1a39f462 100644 --- a/docs/dom3-api/functions_func_0x75.html +++ b/docs/dom3-api/functions_func_0x75.html @@ -68,7 +68,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x77.html b/docs/dom3-api/functions_func_0x77.html index 4f707e1d..ebc1aebb 100644 --- a/docs/dom3-api/functions_func_0x77.html +++ b/docs/dom3-api/functions_func_0x77.html @@ -80,7 +80,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x78.html b/docs/dom3-api/functions_func_0x78.html index 7172ded1..95345f47 100644 --- a/docs/dom3-api/functions_func_0x78.html +++ b/docs/dom3-api/functions_func_0x78.html @@ -77,7 +77,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_func_0x7e.html b/docs/dom3-api/functions_func_0x7e.html index b1076c99..e33707ec 100644 --- a/docs/dom3-api/functions_func_0x7e.html +++ b/docs/dom3-api/functions_func_0x7e.html @@ -245,7 +245,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_type.html b/docs/dom3-api/functions_type.html index 59868748..30c7c306 100644 --- a/docs/dom3-api/functions_type.html +++ b/docs/dom3-api/functions_type.html @@ -66,7 +66,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/functions_vars.html b/docs/dom3-api/functions_vars.html index 65636de2..0ba79510 100644 --- a/docs/dom3-api/functions_vars.html +++ b/docs/dom3-api/functions_vars.html @@ -84,7 +84,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/globals.html b/docs/dom3-api/globals.html index 7d17a5f1..215048ea 100644 --- a/docs/dom3-api/globals.html +++ b/docs/dom3-api/globals.html @@ -246,7 +246,7 @@ Here is a list of all file members with links to the files they belong to: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/globals_defs.html b/docs/dom3-api/globals_defs.html index 287066a3..6a07bded 100644 --- a/docs/dom3-api/globals_defs.html +++ b/docs/dom3-api/globals_defs.html @@ -235,7 +235,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/globals_func.html b/docs/dom3-api/globals_func.html index 0217f7c9..defda1ae 100644 --- a/docs/dom3-api/globals_func.html +++ b/docs/dom3-api/globals_func.html @@ -40,7 +40,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/graph_legend.html b/docs/dom3-api/graph_legend.html index 215e8c66..7eb1820f 100644 --- a/docs/dom3-api/graph_legend.html +++ b/docs/dom3-api/graph_legend.html @@ -83,7 +83,7 @@ A purple dashed arrow is used if a class is contained or used by another class. A yellow dashed arrow denotes a relation between a template instance and the template class it was instantiated from. The arrow is labeled with the template parameters of the instance. -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/hierarchy.html b/docs/dom3-api/hierarchy.html index 82503697..00ace40e 100644 --- a/docs/dom3-api/hierarchy.html +++ b/docs/dom3-api/hierarchy.html @@ -125,7 +125,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically: -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/index.html b/docs/dom3-api/index.html index 2f00d796..e49cbd5b 100644 --- a/docs/dom3-api/index.html +++ b/docs/dom3-api/index.html @@ -18,8 +18,8 @@
    -

    XQilla DOM Level 3 API Documentation

    2.3.2

    -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +

    XQilla DOM Level 3 API Documentation

    2.3.1

    +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/inherits.html b/docs/dom3-api/inherits.html index 5df4d21d..2e16d225 100644 --- a/docs/dom3-api/inherits.html +++ b/docs/dom3-api/inherits.html @@ -157,7 +157,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/namespacemembers.html b/docs/dom3-api/namespacemembers.html index c395c570..838f933d 100644 --- a/docs/dom3-api/namespacemembers.html +++ b/docs/dom3-api/namespacemembers.html @@ -46,7 +46,7 @@ Here is a list of all namespace members with links to the namespace documentatio -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/namespacemembers_func.html b/docs/dom3-api/namespacemembers_func.html index 570addd0..29f731d3 100644 --- a/docs/dom3-api/namespacemembers_func.html +++ b/docs/dom3-api/namespacemembers_func.html @@ -37,7 +37,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/namespacemembers_type.html b/docs/dom3-api/namespacemembers_type.html index b006e1bb..35b40aa5 100644 --- a/docs/dom3-api/namespacemembers_type.html +++ b/docs/dom3-api/namespacemembers_type.html @@ -43,7 +43,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/namespaces.html b/docs/dom3-api/namespaces.html index c3bdd05b..fab426dc 100644 --- a/docs/dom3-api/namespaces.html +++ b/docs/dom3-api/namespaces.html @@ -28,7 +28,7 @@ xercescThis class holds the list of registered DOMImplementations -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/namespacexercesc.html b/docs/dom3-api/namespacexercesc.html index f73a7598..8fd7e2cc 100644 --- a/docs/dom3-api/namespacexercesc.html +++ b/docs/dom3-api/namespacexercesc.html @@ -326,7 +326,7 @@ -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/structXQillaAllocator_1_1rebind-members.html b/docs/dom3-api/structXQillaAllocator_1_1rebind-members.html index 735b4d9e..6d58bd33 100644 --- a/docs/dom3-api/structXQillaAllocator_1_1rebind-members.html +++ b/docs/dom3-api/structXQillaAllocator_1_1rebind-members.html @@ -29,7 +29,7 @@

    XQillaAllocator< _Tp >::rebind< _Tp1 > Member List

    This is the complete list of members for XQillaAllocator< _Tp >::rebind< _Tp1 >, including all inherited members.
    other typedefXQillaAllocator< _Tp >::rebind< _Tp1 >
    -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/structXQillaAllocator_1_1rebind.html b/docs/dom3-api/structXQillaAllocator_1_1rebind.html index 281bbb99..3edaf581 100644 --- a/docs/dom3-api/structXQillaAllocator_1_1rebind.html +++ b/docs/dom3-api/structXQillaAllocator_1_1rebind.html @@ -62,7 +62,7 @@ template<class _Tp1 >
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/xqilla-dom3_8hpp.html b/docs/dom3-api/xqilla-dom3_8hpp.html index e62ea3d4..cb92adb1 100644 --- a/docs/dom3-api/xqilla-dom3_8hpp.html +++ b/docs/dom3-api/xqilla-dom3_8hpp.html @@ -44,7 +44,7 @@ Include dependency graph for xqilla-dom3.hpp:
    -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/dom3-api/xqilla-dom3_8hpp_source.html b/docs/dom3-api/xqilla-dom3_8hpp_source.html index 70c63708..82925009 100644 --- a/docs/dom3-api/xqilla-dom3_8hpp_source.html +++ b/docs/dom3-api/xqilla-dom3_8hpp_source.html @@ -51,7 +51,7 @@ 00027 #include <xqilla/framework/XPath2MemoryManager.hpp> 00028 -
    Generated on 8 Jul 2015 for XQilla DOM Level 3 API by  +
    Generated on 18 May 2015 for XQilla DOM Level 3 API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATAnySimpleType_8hpp.html b/docs/simple-api/ATAnySimpleType_8hpp.html index 52be5df0..bc45fe07 100644 --- a/docs/simple-api/ATAnySimpleType_8hpp.html +++ b/docs/simple-api/ATAnySimpleType_8hpp.html @@ -42,7 +42,7 @@ Include dependency graph for ATAnySimpleType.hpp:  This class represents the atomic types (ie, the simple types which are not list or union types) with type annotation xs:anySimpleType. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATAnySimpleType_8hpp_source.html b/docs/simple-api/ATAnySimpleType_8hpp_source.html index 32e8527c..07e43908 100644 --- a/docs/simple-api/ATAnySimpleType_8hpp_source.html +++ b/docs/simple-api/ATAnySimpleType_8hpp_source.html @@ -76,7 +76,7 @@ 00056 00057 #endif // _ATANYSIMPLETYPE_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATAnyURIOrDerived_8hpp.html b/docs/simple-api/ATAnyURIOrDerived_8hpp.html index 05111277..2c15b324 100644 --- a/docs/simple-api/ATAnyURIOrDerived_8hpp.html +++ b/docs/simple-api/ATAnyURIOrDerived_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: class  ATAnyURIOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATAnyURIOrDerived_8hpp_source.html b/docs/simple-api/ATAnyURIOrDerived_8hpp_source.html index 6a4a3327..e8fe846b 100644 --- a/docs/simple-api/ATAnyURIOrDerived_8hpp_source.html +++ b/docs/simple-api/ATAnyURIOrDerived_8hpp_source.html @@ -75,7 +75,7 @@ 00051 00052 #endif // _ATANYURIORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATBase64BinaryOrDerived_8hpp.html b/docs/simple-api/ATBase64BinaryOrDerived_8hpp.html index feb8c99e..6a185593 100644 --- a/docs/simple-api/ATBase64BinaryOrDerived_8hpp.html +++ b/docs/simple-api/ATBase64BinaryOrDerived_8hpp.html @@ -41,7 +41,7 @@ Include dependency graph for ATBase64BinaryOrDerived.hpp: class  ATBase64BinaryOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATBase64BinaryOrDerived_8hpp_source.html b/docs/simple-api/ATBase64BinaryOrDerived_8hpp_source.html index dbd50aba..e28c84f6 100644 --- a/docs/simple-api/ATBase64BinaryOrDerived_8hpp_source.html +++ b/docs/simple-api/ATBase64BinaryOrDerived_8hpp_source.html @@ -78,7 +78,7 @@ 00056 00057 #endif // _ATBASE64BINARYORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATBooleanOrDerived_8hpp.html b/docs/simple-api/ATBooleanOrDerived_8hpp.html index 3f00962b..798758de 100644 --- a/docs/simple-api/ATBooleanOrDerived_8hpp.html +++ b/docs/simple-api/ATBooleanOrDerived_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  ATBooleanOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATBooleanOrDerived_8hpp_source.html b/docs/simple-api/ATBooleanOrDerived_8hpp_source.html index 75c6103f..86fa3844 100644 --- a/docs/simple-api/ATBooleanOrDerived_8hpp_source.html +++ b/docs/simple-api/ATBooleanOrDerived_8hpp_source.html @@ -108,7 +108,7 @@ 00086 00087 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDateOrDerived_8hpp.html b/docs/simple-api/ATDateOrDerived_8hpp.html index f74852e5..4925dfc3 100644 --- a/docs/simple-api/ATDateOrDerived_8hpp.html +++ b/docs/simple-api/ATDateOrDerived_8hpp.html @@ -51,7 +51,7 @@ This graph shows which files directly or indirectly include this file: class  ATDateOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDateOrDerived_8hpp_source.html b/docs/simple-api/ATDateOrDerived_8hpp_source.html index 78ad12c5..5c37c676 100644 --- a/docs/simple-api/ATDateOrDerived_8hpp_source.html +++ b/docs/simple-api/ATDateOrDerived_8hpp_source.html @@ -108,7 +108,7 @@ 00124 00125 #endif // _ATDATEORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDateTimeOrDerived_8hpp.html b/docs/simple-api/ATDateTimeOrDerived_8hpp.html index 5a017407..d57da2f5 100644 --- a/docs/simple-api/ATDateTimeOrDerived_8hpp.html +++ b/docs/simple-api/ATDateTimeOrDerived_8hpp.html @@ -51,7 +51,7 @@ This graph shows which files directly or indirectly include this file: class  ATDateTimeOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDateTimeOrDerived_8hpp_source.html b/docs/simple-api/ATDateTimeOrDerived_8hpp_source.html index 64d0c937..ca3dde84 100644 --- a/docs/simple-api/ATDateTimeOrDerived_8hpp_source.html +++ b/docs/simple-api/ATDateTimeOrDerived_8hpp_source.html @@ -114,7 +114,7 @@ 00143 00144 #endif // _ATDATETIMEORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDecimalOrDerived_8hpp.html b/docs/simple-api/ATDecimalOrDerived_8hpp.html index 3e038427..eccc2b0d 100644 --- a/docs/simple-api/ATDecimalOrDerived_8hpp.html +++ b/docs/simple-api/ATDecimalOrDerived_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: class  ATDecimalOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDecimalOrDerived_8hpp_source.html b/docs/simple-api/ATDecimalOrDerived_8hpp_source.html index 08f92683..c3cac298 100644 --- a/docs/simple-api/ATDecimalOrDerived_8hpp_source.html +++ b/docs/simple-api/ATDecimalOrDerived_8hpp_source.html @@ -135,7 +135,7 @@ 00136 00137 #endif // _ATDECIMALORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDoubleOrDerived_8hpp.html b/docs/simple-api/ATDoubleOrDerived_8hpp.html index ea579e9a..85e0cdf6 100644 --- a/docs/simple-api/ATDoubleOrDerived_8hpp.html +++ b/docs/simple-api/ATDoubleOrDerived_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: class  ATDoubleOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDoubleOrDerived_8hpp_source.html b/docs/simple-api/ATDoubleOrDerived_8hpp_source.html index 1b6be206..11f7c814 100644 --- a/docs/simple-api/ATDoubleOrDerived_8hpp_source.html +++ b/docs/simple-api/ATDoubleOrDerived_8hpp_source.html @@ -129,7 +129,7 @@ 00128 00129 #endif // _ATDOUBLEORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDurationOrDerived_8hpp.html b/docs/simple-api/ATDurationOrDerived_8hpp.html index 28dc1fda..274d3d15 100644 --- a/docs/simple-api/ATDurationOrDerived_8hpp.html +++ b/docs/simple-api/ATDurationOrDerived_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  ATDurationOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATDurationOrDerived_8hpp_source.html b/docs/simple-api/ATDurationOrDerived_8hpp_source.html index dbd41f04..b4b3bdac 100644 --- a/docs/simple-api/ATDurationOrDerived_8hpp_source.html +++ b/docs/simple-api/ATDurationOrDerived_8hpp_source.html @@ -126,7 +126,7 @@ 00121 00122 -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATFloatOrDerived_8hpp.html b/docs/simple-api/ATFloatOrDerived_8hpp.html index 90b1d111..78066e69 100644 --- a/docs/simple-api/ATFloatOrDerived_8hpp.html +++ b/docs/simple-api/ATFloatOrDerived_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: class  ATFloatOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATFloatOrDerived_8hpp_source.html b/docs/simple-api/ATFloatOrDerived_8hpp_source.html index c52d619f..efeca749 100644 --- a/docs/simple-api/ATFloatOrDerived_8hpp_source.html +++ b/docs/simple-api/ATFloatOrDerived_8hpp_source.html @@ -131,7 +131,7 @@ 00131 00132 #endif // _ATFLOATORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGDayOrDerived_8hpp.html b/docs/simple-api/ATGDayOrDerived_8hpp.html index 6a9b183c..9c985888 100644 --- a/docs/simple-api/ATGDayOrDerived_8hpp.html +++ b/docs/simple-api/ATGDayOrDerived_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  ATGDayOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGDayOrDerived_8hpp_source.html b/docs/simple-api/ATGDayOrDerived_8hpp_source.html index c8dfb008..315f51b3 100644 --- a/docs/simple-api/ATGDayOrDerived_8hpp_source.html +++ b/docs/simple-api/ATGDayOrDerived_8hpp_source.html @@ -84,7 +84,7 @@ 00064 00065 #endif // _ATGDAYORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGMonthDayOrDerived_8hpp.html b/docs/simple-api/ATGMonthDayOrDerived_8hpp.html index 11df0131..7c290c52 100644 --- a/docs/simple-api/ATGMonthDayOrDerived_8hpp.html +++ b/docs/simple-api/ATGMonthDayOrDerived_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  ATGMonthDayOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGMonthDayOrDerived_8hpp_source.html b/docs/simple-api/ATGMonthDayOrDerived_8hpp_source.html index 765a344f..846860d4 100644 --- a/docs/simple-api/ATGMonthDayOrDerived_8hpp_source.html +++ b/docs/simple-api/ATGMonthDayOrDerived_8hpp_source.html @@ -84,7 +84,7 @@ 00064 00065 #endif // _ATGMONTHDAYORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGMonthOrDerived_8hpp.html b/docs/simple-api/ATGMonthOrDerived_8hpp.html index d4f23811..aa216f63 100644 --- a/docs/simple-api/ATGMonthOrDerived_8hpp.html +++ b/docs/simple-api/ATGMonthOrDerived_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  ATGMonthOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGMonthOrDerived_8hpp_source.html b/docs/simple-api/ATGMonthOrDerived_8hpp_source.html index 7806f3bc..5e164d5c 100644 --- a/docs/simple-api/ATGMonthOrDerived_8hpp_source.html +++ b/docs/simple-api/ATGMonthOrDerived_8hpp_source.html @@ -84,7 +84,7 @@ 00064 00065 #endif // _ATGMONTHORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGYearMonthOrDerived_8hpp.html b/docs/simple-api/ATGYearMonthOrDerived_8hpp.html index 24cee750..9da02406 100644 --- a/docs/simple-api/ATGYearMonthOrDerived_8hpp.html +++ b/docs/simple-api/ATGYearMonthOrDerived_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  ATGYearMonthOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGYearMonthOrDerived_8hpp_source.html b/docs/simple-api/ATGYearMonthOrDerived_8hpp_source.html index 4b303375..bdef8444 100644 --- a/docs/simple-api/ATGYearMonthOrDerived_8hpp_source.html +++ b/docs/simple-api/ATGYearMonthOrDerived_8hpp_source.html @@ -84,7 +84,7 @@ 00064 00065 #endif // _ATGYEARMONTHORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGYearOrDerived_8hpp.html b/docs/simple-api/ATGYearOrDerived_8hpp.html index 5ce54e0f..3c56691b 100644 --- a/docs/simple-api/ATGYearOrDerived_8hpp.html +++ b/docs/simple-api/ATGYearOrDerived_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  ATGYearOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATGYearOrDerived_8hpp_source.html b/docs/simple-api/ATGYearOrDerived_8hpp_source.html index d679e7e7..fe2bf093 100644 --- a/docs/simple-api/ATGYearOrDerived_8hpp_source.html +++ b/docs/simple-api/ATGYearOrDerived_8hpp_source.html @@ -84,7 +84,7 @@ 00064 00065 #endif // _ATGYEARORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATHexBinaryOrDerived_8hpp.html b/docs/simple-api/ATHexBinaryOrDerived_8hpp.html index c0170caf..0f5139af 100644 --- a/docs/simple-api/ATHexBinaryOrDerived_8hpp.html +++ b/docs/simple-api/ATHexBinaryOrDerived_8hpp.html @@ -41,7 +41,7 @@ Include dependency graph for ATHexBinaryOrDerived.hpp: class  ATHexBinaryOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATHexBinaryOrDerived_8hpp_source.html b/docs/simple-api/ATHexBinaryOrDerived_8hpp_source.html index e370d597..93038db2 100644 --- a/docs/simple-api/ATHexBinaryOrDerived_8hpp_source.html +++ b/docs/simple-api/ATHexBinaryOrDerived_8hpp_source.html @@ -77,7 +77,7 @@ 00055 00056 #endif // _ATHEXBINARYORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATNotationOrDerived_8hpp.html b/docs/simple-api/ATNotationOrDerived_8hpp.html index a462ec78..0221554a 100644 --- a/docs/simple-api/ATNotationOrDerived_8hpp.html +++ b/docs/simple-api/ATNotationOrDerived_8hpp.html @@ -41,7 +41,7 @@ Include dependency graph for ATNotationOrDerived.hpp: class  ATNotationOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATNotationOrDerived_8hpp_source.html b/docs/simple-api/ATNotationOrDerived_8hpp_source.html index bcb45e8f..1c23007d 100644 --- a/docs/simple-api/ATNotationOrDerived_8hpp_source.html +++ b/docs/simple-api/ATNotationOrDerived_8hpp_source.html @@ -77,7 +77,7 @@ 00055 00056 #endif // _ATNOTATIONORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATQNameOrDerived_8hpp.html b/docs/simple-api/ATQNameOrDerived_8hpp.html index 7365f5fa..624b9d5f 100644 --- a/docs/simple-api/ATQNameOrDerived_8hpp.html +++ b/docs/simple-api/ATQNameOrDerived_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: class  ATQNameOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATQNameOrDerived_8hpp_source.html b/docs/simple-api/ATQNameOrDerived_8hpp_source.html index ecd5ac14..7b83c3d9 100644 --- a/docs/simple-api/ATQNameOrDerived_8hpp_source.html +++ b/docs/simple-api/ATQNameOrDerived_8hpp_source.html @@ -88,7 +88,7 @@ 00066 00067 #endif // _ATQNAMEORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATStringOrDerived_8hpp.html b/docs/simple-api/ATStringOrDerived_8hpp.html index 33b76d80..b8ae1eb1 100644 --- a/docs/simple-api/ATStringOrDerived_8hpp.html +++ b/docs/simple-api/ATStringOrDerived_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  ATStringOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATStringOrDerived_8hpp_source.html b/docs/simple-api/ATStringOrDerived_8hpp_source.html index b088758f..2300e1e7 100644 --- a/docs/simple-api/ATStringOrDerived_8hpp_source.html +++ b/docs/simple-api/ATStringOrDerived_8hpp_source.html @@ -95,7 +95,7 @@ 00071 00072 #endif // _ATSTRINGORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATTimeOrDerived_8hpp.html b/docs/simple-api/ATTimeOrDerived_8hpp.html index 06cbf770..d5fad333 100644 --- a/docs/simple-api/ATTimeOrDerived_8hpp.html +++ b/docs/simple-api/ATTimeOrDerived_8hpp.html @@ -51,7 +51,7 @@ This graph shows which files directly or indirectly include this file: class  ATTimeOrDerived -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATTimeOrDerived_8hpp_source.html b/docs/simple-api/ATTimeOrDerived_8hpp_source.html index 03cf983d..946620d1 100644 --- a/docs/simple-api/ATTimeOrDerived_8hpp_source.html +++ b/docs/simple-api/ATTimeOrDerived_8hpp_source.html @@ -104,7 +104,7 @@ 00114 00115 #endif // _ATTIMEORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATUntypedAtomic_8hpp.html b/docs/simple-api/ATUntypedAtomic_8hpp.html index 9df6a1c1..380a53b5 100644 --- a/docs/simple-api/ATUntypedAtomic_8hpp.html +++ b/docs/simple-api/ATUntypedAtomic_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: class  ATUntypedAtomic -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ATUntypedAtomic_8hpp_source.html b/docs/simple-api/ATUntypedAtomic_8hpp_source.html index d37adf87..dae39722 100644 --- a/docs/simple-api/ATUntypedAtomic_8hpp_source.html +++ b/docs/simple-api/ATUntypedAtomic_8hpp_source.html @@ -77,7 +77,7 @@ 00053 00054 #endif // _ATUNTYPEDATOMIC_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/AnyAtomicType_8hpp.html b/docs/simple-api/AnyAtomicType_8hpp.html index 60c31aa2..c24826ae 100644 --- a/docs/simple-api/AnyAtomicType_8hpp.html +++ b/docs/simple-api/AnyAtomicType_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  AnyAtomicType::CastTable -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/AnyAtomicType_8hpp_source.html b/docs/simple-api/AnyAtomicType_8hpp_source.html index 314f7b3a..ebdd9002 100644 --- a/docs/simple-api/AnyAtomicType_8hpp_source.html +++ b/docs/simple-api/AnyAtomicType_8hpp_source.html @@ -177,7 +177,7 @@ 00165 00166 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Collation_8hpp.html b/docs/simple-api/Collation_8hpp.html index becb4469..793f9555 100644 --- a/docs/simple-api/Collation_8hpp.html +++ b/docs/simple-api/Collation_8hpp.html @@ -38,7 +38,7 @@ Include dependency graph for Collation.hpp: class  Collation -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Collation_8hpp_source.html b/docs/simple-api/Collation_8hpp_source.html index 7ac7db56..cd04ded1 100644 --- a/docs/simple-api/Collation_8hpp_source.html +++ b/docs/simple-api/Collation_8hpp_source.html @@ -65,7 +65,7 @@ 00041 00042 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ContentSequenceFilter_8hpp.html b/docs/simple-api/ContentSequenceFilter_8hpp.html index 178cbe75..9a7cbca1 100644 --- a/docs/simple-api/ContentSequenceFilter_8hpp.html +++ b/docs/simple-api/ContentSequenceFilter_8hpp.html @@ -39,7 +39,7 @@ Include dependency graph for ContentSequenceFilter.hpp: class  ContentSequenceFilter -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ContentSequenceFilter_8hpp_source.html b/docs/simple-api/ContentSequenceFilter_8hpp_source.html index d28746ce..1b92a1d5 100644 --- a/docs/simple-api/ContentSequenceFilter_8hpp_source.html +++ b/docs/simple-api/ContentSequenceFilter_8hpp_source.html @@ -71,7 +71,7 @@ 00047 00048 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ContextHelpers_8hpp.html b/docs/simple-api/ContextHelpers_8hpp.html index d11dbddd..9233e9ea 100644 --- a/docs/simple-api/ContextHelpers_8hpp.html +++ b/docs/simple-api/ContextHelpers_8hpp.html @@ -49,7 +49,7 @@ Include dependency graph for ContextHelpers.hpp: class  AutoReset< T > -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ContextHelpers_8hpp_source.html b/docs/simple-api/ContextHelpers_8hpp_source.html index 5f4d7a26..dd5cec63 100644 --- a/docs/simple-api/ContextHelpers_8hpp_source.html +++ b/docs/simple-api/ContextHelpers_8hpp_source.html @@ -320,7 +320,7 @@ 00296 00297 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DOMDocument_8hpp.html b/docs/simple-api/DOMDocument_8hpp.html index 92fefb02..d5ecaead 100644 --- a/docs/simple-api/DOMDocument_8hpp.html +++ b/docs/simple-api/DOMDocument_8hpp.html @@ -62,7 +62,7 @@ Include dependency graph for DOMDocument.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DOMDocument_8hpp_source.html b/docs/simple-api/DOMDocument_8hpp_source.html index b52fbde4..4268cac3 100644 --- a/docs/simple-api/DOMDocument_8hpp_source.html +++ b/docs/simple-api/DOMDocument_8hpp_source.html @@ -203,7 +203,7 @@ 00818 00819 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DOMNode_8hpp.html b/docs/simple-api/DOMNode_8hpp.html index 5710b7bc..982fc44d 100644 --- a/docs/simple-api/DOMNode_8hpp.html +++ b/docs/simple-api/DOMNode_8hpp.html @@ -137,7 +137,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DOMNode_8hpp_source.html b/docs/simple-api/DOMNode_8hpp_source.html index e0e3fc04..72f38468 100644 --- a/docs/simple-api/DOMNode_8hpp_source.html +++ b/docs/simple-api/DOMNode_8hpp_source.html @@ -238,7 +238,7 @@ 00921 00922 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DOMXPathNSResolver_8hpp.html b/docs/simple-api/DOMXPathNSResolver_8hpp.html index a3b81873..c6e12eea 100644 --- a/docs/simple-api/DOMXPathNSResolver_8hpp.html +++ b/docs/simple-api/DOMXPathNSResolver_8hpp.html @@ -56,7 +56,7 @@ Include dependency graph for DOMXPathNSResolver.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DOMXPathNSResolver_8hpp_source.html b/docs/simple-api/DOMXPathNSResolver_8hpp_source.html index d678186d..7de91602 100644 --- a/docs/simple-api/DOMXPathNSResolver_8hpp_source.html +++ b/docs/simple-api/DOMXPathNSResolver_8hpp_source.html @@ -94,7 +94,7 @@ 00129 00130 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DateOrTimeType_8hpp.html b/docs/simple-api/DateOrTimeType_8hpp.html index 9372f71a..21b8ca18 100644 --- a/docs/simple-api/DateOrTimeType_8hpp.html +++ b/docs/simple-api/DateOrTimeType_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: class  DateOrTimeType -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DateOrTimeType_8hpp_source.html b/docs/simple-api/DateOrTimeType_8hpp_source.html index 8c7f4aec..e560c627 100644 --- a/docs/simple-api/DateOrTimeType_8hpp_source.html +++ b/docs/simple-api/DateOrTimeType_8hpp_source.html @@ -66,7 +66,7 @@ 00045 00046 #endif // _ATDATETIMEORDERIVED_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DebugListener_8hpp.html b/docs/simple-api/DebugListener_8hpp.html index f4d94285..5b1b7dea 100644 --- a/docs/simple-api/DebugListener_8hpp.html +++ b/docs/simple-api/DebugListener_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file:  A class used to listen for debugging information. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DebugListener_8hpp_source.html b/docs/simple-api/DebugListener_8hpp_source.html index ac1a84e8..3ea19089 100644 --- a/docs/simple-api/DebugListener_8hpp_source.html +++ b/docs/simple-api/DebugListener_8hpp_source.html @@ -68,7 +68,7 @@ 00047 00048 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DocumentCache_8hpp.html b/docs/simple-api/DocumentCache_8hpp.html index 9d08d20c..ec55093a 100644 --- a/docs/simple-api/DocumentCache_8hpp.html +++ b/docs/simple-api/DocumentCache_8hpp.html @@ -71,7 +71,7 @@ XMLCh *, XQillaAllocator
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DocumentCache_8hpp_source.html b/docs/simple-api/DocumentCache_8hpp_source.html index 604b0616..56d1695e 100644 --- a/docs/simple-api/DocumentCache_8hpp_source.html +++ b/docs/simple-api/DocumentCache_8hpp_source.html @@ -134,7 +134,7 @@ 00122 00123 -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DynamicContext_8hpp.html b/docs/simple-api/DynamicContext_8hpp.html index d5569f6e..38886712 100644 --- a/docs/simple-api/DynamicContext_8hpp.html +++ b/docs/simple-api/DynamicContext_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file:  The execution time dynamic context interface. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/DynamicContext_8hpp_source.html b/docs/simple-api/DynamicContext_8hpp_source.html index 2bd6d192..64c5e6b8 100644 --- a/docs/simple-api/DynamicContext_8hpp_source.html +++ b/docs/simple-api/DynamicContext_8hpp_source.html @@ -124,7 +124,7 @@ 00153 00154 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/EventGenerator_8hpp.html b/docs/simple-api/EventGenerator_8hpp.html index d463ec74..7de4580a 100644 --- a/docs/simple-api/EventGenerator_8hpp.html +++ b/docs/simple-api/EventGenerator_8hpp.html @@ -42,7 +42,7 @@ Include dependency graph for EventGenerator.hpp: class  ASTNodeEventGenerator -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/EventGenerator_8hpp_source.html b/docs/simple-api/EventGenerator_8hpp_source.html index ca53d0f8..33dd5a9a 100644 --- a/docs/simple-api/EventGenerator_8hpp_source.html +++ b/docs/simple-api/EventGenerator_8hpp_source.html @@ -89,7 +89,7 @@ 00067 00068 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/EventHandler_8hpp.html b/docs/simple-api/EventHandler_8hpp.html index 93114b98..d306c4a6 100644 --- a/docs/simple-api/EventHandler_8hpp.html +++ b/docs/simple-api/EventHandler_8hpp.html @@ -71,7 +71,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/EventHandler_8hpp_source.html b/docs/simple-api/EventHandler_8hpp_source.html index 4db93303..5f9ec29e 100644 --- a/docs/simple-api/EventHandler_8hpp_source.html +++ b/docs/simple-api/EventHandler_8hpp_source.html @@ -166,7 +166,7 @@ 00156 00157 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/EventSerializer_8hpp.html b/docs/simple-api/EventSerializer_8hpp.html index ca6726b7..9f2e3135 100644 --- a/docs/simple-api/EventSerializer_8hpp.html +++ b/docs/simple-api/EventSerializer_8hpp.html @@ -47,7 +47,7 @@ This graph shows which files directly or indirectly include this file: class  EventSerializer -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/EventSerializer_8hpp_source.html b/docs/simple-api/EventSerializer_8hpp_source.html index d5ab9552..953dc246 100644 --- a/docs/simple-api/EventSerializer_8hpp_source.html +++ b/docs/simple-api/EventSerializer_8hpp_source.html @@ -92,7 +92,7 @@ 00068 00069 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ExternalFunctionResolver_8hpp.html b/docs/simple-api/ExternalFunctionResolver_8hpp.html index ca05e15e..01bb1341 100644 --- a/docs/simple-api/ExternalFunctionResolver_8hpp.html +++ b/docs/simple-api/ExternalFunctionResolver_8hpp.html @@ -37,7 +37,7 @@ Include dependency graph for ExternalFunctionResolver.hpp: class  ExternalFunctionResolver -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ExternalFunctionResolver_8hpp_source.html b/docs/simple-api/ExternalFunctionResolver_8hpp_source.html index 81b73f26..a86624b8 100644 --- a/docs/simple-api/ExternalFunctionResolver_8hpp_source.html +++ b/docs/simple-api/ExternalFunctionResolver_8hpp_source.html @@ -57,7 +57,7 @@ 00035 }; 00036 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ExternalFunction_8hpp.html b/docs/simple-api/ExternalFunction_8hpp.html index 86a9515c..8734825e 100644 --- a/docs/simple-api/ExternalFunction_8hpp.html +++ b/docs/simple-api/ExternalFunction_8hpp.html @@ -39,7 +39,7 @@ Include dependency graph for ExternalFunction.hpp: class  ExternalFunction::Arguments -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ExternalFunction_8hpp_source.html b/docs/simple-api/ExternalFunction_8hpp_source.html index afa672ed..9067639b 100644 --- a/docs/simple-api/ExternalFunction_8hpp_source.html +++ b/docs/simple-api/ExternalFunction_8hpp_source.html @@ -86,7 +86,7 @@ 00065 #endif 00066 -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/FastXDMConfiguration_8hpp.html b/docs/simple-api/FastXDMConfiguration_8hpp.html index bc1a02a7..233bb3b6 100644 --- a/docs/simple-api/FastXDMConfiguration_8hpp.html +++ b/docs/simple-api/FastXDMConfiguration_8hpp.html @@ -47,7 +47,7 @@ This graph shows which files directly or indirectly include this file: class  FastXDMConfiguration -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/FastXDMConfiguration_8hpp_source.html b/docs/simple-api/FastXDMConfiguration_8hpp_source.html index 305fa9ac..58a96835 100644 --- a/docs/simple-api/FastXDMConfiguration_8hpp_source.html +++ b/docs/simple-api/FastXDMConfiguration_8hpp_source.html @@ -66,7 +66,7 @@ 00042 00043 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/FunctionRef_8hpp.html b/docs/simple-api/FunctionRef_8hpp.html index d65f4787..5c259d99 100644 --- a/docs/simple-api/FunctionRef_8hpp.html +++ b/docs/simple-api/FunctionRef_8hpp.html @@ -58,7 +58,7 @@ Include dependency graph for FunctionRef.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/FunctionRef_8hpp_source.html b/docs/simple-api/FunctionRef_8hpp_source.html index 68e288c2..d435e861 100644 --- a/docs/simple-api/FunctionRef_8hpp_source.html +++ b/docs/simple-api/FunctionRef_8hpp_source.html @@ -79,7 +79,7 @@ 00055 }; 00056 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/InputParser_8hpp.html b/docs/simple-api/InputParser_8hpp.html index 8109eaab..9b858206 100644 --- a/docs/simple-api/InputParser_8hpp.html +++ b/docs/simple-api/InputParser_8hpp.html @@ -47,7 +47,7 @@ This graph shows which files directly or indirectly include this file: class  InputParser -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/InputParser_8hpp_source.html b/docs/simple-api/InputParser_8hpp_source.html index 504adc8a..0fc8268b 100644 --- a/docs/simple-api/InputParser_8hpp_source.html +++ b/docs/simple-api/InputParser_8hpp_source.html @@ -80,7 +80,7 @@ 00056 00057 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/InputSource_8hpp.html b/docs/simple-api/InputSource_8hpp.html index c60d0427..dc05955e 100644 --- a/docs/simple-api/InputSource_8hpp.html +++ b/docs/simple-api/InputSource_8hpp.html @@ -65,7 +65,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/InputSource_8hpp_source.html b/docs/simple-api/InputSource_8hpp_source.html index 61459427..59d18599 100644 --- a/docs/simple-api/InputSource_8hpp_source.html +++ b/docs/simple-api/InputSource_8hpp_source.html @@ -200,7 +200,7 @@ 00336 00337 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/InteractiveDebugger_8hpp.html b/docs/simple-api/InteractiveDebugger_8hpp.html index 1a6abc0a..5779fcfc 100644 --- a/docs/simple-api/InteractiveDebugger_8hpp.html +++ b/docs/simple-api/InteractiveDebugger_8hpp.html @@ -50,7 +50,7 @@ Include dependency graph for InteractiveDebugger.hpp: class  InteractiveDebugger -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/InteractiveDebugger_8hpp_source.html b/docs/simple-api/InteractiveDebugger_8hpp_source.html index e73d9cbb..d29c498d 100644 --- a/docs/simple-api/InteractiveDebugger_8hpp_source.html +++ b/docs/simple-api/InteractiveDebugger_8hpp_source.html @@ -198,7 +198,7 @@ 00174 00175 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ItemFactory_8hpp.html b/docs/simple-api/ItemFactory_8hpp.html index 716f431e..d74c6811 100644 --- a/docs/simple-api/ItemFactory_8hpp.html +++ b/docs/simple-api/ItemFactory_8hpp.html @@ -66,7 +66,7 @@ This graph shows which files directly or indirectly include this file: class  ItemFactory -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ItemFactory_8hpp_source.html b/docs/simple-api/ItemFactory_8hpp_source.html index fdc1e0ad..8c19e1e4 100644 --- a/docs/simple-api/ItemFactory_8hpp_source.html +++ b/docs/simple-api/ItemFactory_8hpp_source.html @@ -154,7 +154,7 @@ 00130 00131 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Item_8hpp.html b/docs/simple-api/Item_8hpp.html index 3695c400..53620b0e 100644 --- a/docs/simple-api/Item_8hpp.html +++ b/docs/simple-api/Item_8hpp.html @@ -50,7 +50,7 @@ This graph shows which files directly or indirectly include this file: namespace  xercesc -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Item_8hpp_source.html b/docs/simple-api/Item_8hpp_source.html index fc65f201..f4294d4e 100644 --- a/docs/simple-api/Item_8hpp_source.html +++ b/docs/simple-api/Item_8hpp_source.html @@ -96,7 +96,7 @@ 00076 #endif 00077 -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/LocalFileFormatTarget_8hpp.html b/docs/simple-api/LocalFileFormatTarget_8hpp.html index 8ab434b8..2ef05e7e 100644 --- a/docs/simple-api/LocalFileFormatTarget_8hpp.html +++ b/docs/simple-api/LocalFileFormatTarget_8hpp.html @@ -57,7 +57,7 @@ Include dependency graph for LocalFileFormatTarget.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/LocalFileFormatTarget_8hpp_source.html b/docs/simple-api/LocalFileFormatTarget_8hpp_source.html index d0ad6f05..f01a8b56 100644 --- a/docs/simple-api/LocalFileFormatTarget_8hpp_source.html +++ b/docs/simple-api/LocalFileFormatTarget_8hpp_source.html @@ -119,7 +119,7 @@ 00098 00099 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/LocalFileInputSource_8hpp.html b/docs/simple-api/LocalFileInputSource_8hpp.html index f6d42c07..de6894ef 100644 --- a/docs/simple-api/LocalFileInputSource_8hpp.html +++ b/docs/simple-api/LocalFileInputSource_8hpp.html @@ -58,7 +58,7 @@ Include dependency graph for LocalFileInputSource.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/LocalFileInputSource_8hpp_source.html b/docs/simple-api/LocalFileInputSource_8hpp_source.html index 07037c4f..418d2da7 100644 --- a/docs/simple-api/LocalFileInputSource_8hpp_source.html +++ b/docs/simple-api/LocalFileInputSource_8hpp_source.html @@ -97,7 +97,7 @@ 00151 00152 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/LocationInfo_8hpp.html b/docs/simple-api/LocationInfo_8hpp.html index ea5d0592..9a2ef9e1 100644 --- a/docs/simple-api/LocationInfo_8hpp.html +++ b/docs/simple-api/LocationInfo_8hpp.html @@ -46,7 +46,7 @@ This graph shows which files directly or indirectly include this file:  A class that gives records a location in the query. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/LocationInfo_8hpp_source.html b/docs/simple-api/LocationInfo_8hpp_source.html index 1a9c1f69..b89aceb5 100644 --- a/docs/simple-api/LocationInfo_8hpp_source.html +++ b/docs/simple-api/LocationInfo_8hpp_source.html @@ -83,7 +83,7 @@ 00067 00068 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/MemBufFormatTarget_8hpp.html b/docs/simple-api/MemBufFormatTarget_8hpp.html index 17e3ba09..953e9e5b 100644 --- a/docs/simple-api/MemBufFormatTarget_8hpp.html +++ b/docs/simple-api/MemBufFormatTarget_8hpp.html @@ -57,7 +57,7 @@ Include dependency graph for MemBufFormatTarget.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/MemBufFormatTarget_8hpp_source.html b/docs/simple-api/MemBufFormatTarget_8hpp_source.html index 5fed6247..f4e66ed2 100644 --- a/docs/simple-api/MemBufFormatTarget_8hpp_source.html +++ b/docs/simple-api/MemBufFormatTarget_8hpp_source.html @@ -135,7 +135,7 @@ 00135 #endif 00136 -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/MemBufInputSource_8hpp.html b/docs/simple-api/MemBufInputSource_8hpp.html index 732ba2e3..a8958aa5 100644 --- a/docs/simple-api/MemBufInputSource_8hpp.html +++ b/docs/simple-api/MemBufInputSource_8hpp.html @@ -58,7 +58,7 @@ Include dependency graph for MemBufInputSource.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/MemBufInputSource_8hpp_source.html b/docs/simple-api/MemBufInputSource_8hpp_source.html index e4c75118..f9d969c7 100644 --- a/docs/simple-api/MemBufInputSource_8hpp_source.html +++ b/docs/simple-api/MemBufInputSource_8hpp_source.html @@ -148,7 +148,7 @@ 00229 00230 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/MemoryManager_8hpp.html b/docs/simple-api/MemoryManager_8hpp.html index b91a4332..aeed26e0 100644 --- a/docs/simple-api/MemoryManager_8hpp.html +++ b/docs/simple-api/MemoryManager_8hpp.html @@ -64,7 +64,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/MemoryManager_8hpp_source.html b/docs/simple-api/MemoryManager_8hpp_source.html index 06b7ab60..cb5650b9 100644 --- a/docs/simple-api/MemoryManager_8hpp_source.html +++ b/docs/simple-api/MemoryManager_8hpp_source.html @@ -103,7 +103,7 @@ 00124 00125 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/MessageListener_8hpp.html b/docs/simple-api/MessageListener_8hpp.html index c6600b87..3399f7d1 100644 --- a/docs/simple-api/MessageListener_8hpp.html +++ b/docs/simple-api/MessageListener_8hpp.html @@ -46,7 +46,7 @@ This graph shows which files directly or indirectly include this file:  A class used to listen for warnings or trace information. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/MessageListener_8hpp_source.html b/docs/simple-api/MessageListener_8hpp_source.html index 16645533..9c14954c 100644 --- a/docs/simple-api/MessageListener_8hpp_source.html +++ b/docs/simple-api/MessageListener_8hpp_source.html @@ -63,7 +63,7 @@ 00048 }; 00049 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ModuleResolver_8hpp.html b/docs/simple-api/ModuleResolver_8hpp.html index ec7f35fb..6435152d 100644 --- a/docs/simple-api/ModuleResolver_8hpp.html +++ b/docs/simple-api/ModuleResolver_8hpp.html @@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file: class  ModuleResolver -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ModuleResolver_8hpp_source.html b/docs/simple-api/ModuleResolver_8hpp_source.html index 4d1d7711..8b3807c3 100644 --- a/docs/simple-api/ModuleResolver_8hpp_source.html +++ b/docs/simple-api/ModuleResolver_8hpp_source.html @@ -56,7 +56,7 @@ 00035 }; 00036 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/NSFixupFilter_8hpp.html b/docs/simple-api/NSFixupFilter_8hpp.html index aa0a3bde..6012f1c3 100644 --- a/docs/simple-api/NSFixupFilter_8hpp.html +++ b/docs/simple-api/NSFixupFilter_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: struct  NSFixupFilter::NSEntry -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/NSFixupFilter_8hpp_source.html b/docs/simple-api/NSFixupFilter_8hpp_source.html index 6d08e0fe..62bc84aa 100644 --- a/docs/simple-api/NSFixupFilter_8hpp_source.html +++ b/docs/simple-api/NSFixupFilter_8hpp_source.html @@ -94,7 +94,7 @@ 00071 00072 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Node_8hpp.html b/docs/simple-api/Node_8hpp.html index 04fc7637..c24d4845 100644 --- a/docs/simple-api/Node_8hpp.html +++ b/docs/simple-api/Node_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: class  Node -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Node_8hpp_source.html b/docs/simple-api/Node_8hpp_source.html index a0a70cfe..a96c4e86 100644 --- a/docs/simple-api/Node_8hpp_source.html +++ b/docs/simple-api/Node_8hpp_source.html @@ -125,7 +125,7 @@ 00134 }; 00135 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Numeric_8hpp.html b/docs/simple-api/Numeric_8hpp.html index 5b66dd2f..28b89768 100644 --- a/docs/simple-api/Numeric_8hpp.html +++ b/docs/simple-api/Numeric_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file: class  Numeric -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Numeric_8hpp_source.html b/docs/simple-api/Numeric_8hpp_source.html index 6b6976e6..0dcf211d 100644 --- a/docs/simple-api/Numeric_8hpp_source.html +++ b/docs/simple-api/Numeric_8hpp_source.html @@ -185,7 +185,7 @@ 00190 00191 #endif // __NUMERIC_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/PlatformUtils_8hpp.html b/docs/simple-api/PlatformUtils_8hpp.html index 21c8b879..2a5ee9de 100644 --- a/docs/simple-api/PlatformUtils_8hpp.html +++ b/docs/simple-api/PlatformUtils_8hpp.html @@ -70,7 +70,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/PlatformUtils_8hpp_source.html b/docs/simple-api/PlatformUtils_8hpp_source.html index 6b9b9a4d..ecfcf162 100644 --- a/docs/simple-api/PlatformUtils_8hpp_source.html +++ b/docs/simple-api/PlatformUtils_8hpp_source.html @@ -328,7 +328,7 @@ 00838 00839 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/QueryPathTreeFilter_8hpp.html b/docs/simple-api/QueryPathTreeFilter_8hpp.html index 818370a1..9fe192f8 100644 --- a/docs/simple-api/QueryPathTreeFilter_8hpp.html +++ b/docs/simple-api/QueryPathTreeFilter_8hpp.html @@ -59,7 +59,7 @@ QueryPathNode * >  -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/QueryPathTreeFilter_8hpp_source.html b/docs/simple-api/QueryPathTreeFilter_8hpp_source.html index c9c17f06..6cd72c6e 100644 --- a/docs/simple-api/QueryPathTreeFilter_8hpp_source.html +++ b/docs/simple-api/QueryPathTreeFilter_8hpp_source.html @@ -100,7 +100,7 @@ 00076 00077 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ReferenceCounted_8hpp.html b/docs/simple-api/ReferenceCounted_8hpp.html index fee20e23..9025544f 100644 --- a/docs/simple-api/ReferenceCounted_8hpp.html +++ b/docs/simple-api/ReferenceCounted_8hpp.html @@ -192,7 +192,7 @@ template<class T1 , class T2 > -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ReferenceCounted_8hpp_source.html b/docs/simple-api/ReferenceCounted_8hpp_source.html index 757e5ff3..e755ca19 100644 --- a/docs/simple-api/ReferenceCounted_8hpp_source.html +++ b/docs/simple-api/ReferenceCounted_8hpp_source.html @@ -166,7 +166,7 @@ 00146 00147 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/RegexGroupStore_8hpp.html b/docs/simple-api/RegexGroupStore_8hpp.html index 503bd4d1..11c401be 100644 --- a/docs/simple-api/RegexGroupStore_8hpp.html +++ b/docs/simple-api/RegexGroupStore_8hpp.html @@ -39,7 +39,7 @@ Include dependency graph for RegexGroupStore.hpp:  The pure virtual base class for accessing regular expression group values at runtime. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/RegexGroupStore_8hpp_source.html b/docs/simple-api/RegexGroupStore_8hpp_source.html index 76290f34..9a7a31f5 100644 --- a/docs/simple-api/RegexGroupStore_8hpp_source.html +++ b/docs/simple-api/RegexGroupStore_8hpp_source.html @@ -60,7 +60,7 @@ 00039 00040 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ResultImpl_8hpp.html b/docs/simple-api/ResultImpl_8hpp.html index a96fbf8d..49f4d37b 100644 --- a/docs/simple-api/ResultImpl_8hpp.html +++ b/docs/simple-api/ResultImpl_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file:  A lazily evaluated query result. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/ResultImpl_8hpp_source.html b/docs/simple-api/ResultImpl_8hpp_source.html index bc203ae7..eb7fff4e 100644 --- a/docs/simple-api/ResultImpl_8hpp_source.html +++ b/docs/simple-api/ResultImpl_8hpp_source.html @@ -83,7 +83,7 @@ 00065 00066 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Result_8hpp.html b/docs/simple-api/Result_8hpp.html index 36f275c7..662a397f 100644 --- a/docs/simple-api/Result_8hpp.html +++ b/docs/simple-api/Result_8hpp.html @@ -52,7 +52,7 @@ This graph shows which files directly or indirectly include this file:  A scoped pointer wrapper for the lazily evaluated query result. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Result_8hpp_source.html b/docs/simple-api/Result_8hpp_source.html index a8fe47c2..c1eaa4cb 100644 --- a/docs/simple-api/Result_8hpp_source.html +++ b/docs/simple-api/Result_8hpp_source.html @@ -114,7 +114,7 @@ 00096 00097 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/SchemaValidatorFilter_8hpp.html b/docs/simple-api/SchemaValidatorFilter_8hpp.html index b48b7078..c459e48b 100644 --- a/docs/simple-api/SchemaValidatorFilter_8hpp.html +++ b/docs/simple-api/SchemaValidatorFilter_8hpp.html @@ -63,7 +63,7 @@ Include dependency graph for SchemaValidatorFilter.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/SchemaValidatorFilter_8hpp_source.html b/docs/simple-api/SchemaValidatorFilter_8hpp_source.html index 3cfea92c..5a00980e 100644 --- a/docs/simple-api/SchemaValidatorFilter_8hpp_source.html +++ b/docs/simple-api/SchemaValidatorFilter_8hpp_source.html @@ -178,7 +178,7 @@ 00161 00162 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Scope_8hpp.html b/docs/simple-api/Scope_8hpp.html index 9d57a2ad..453cf62f 100644 --- a/docs/simple-api/Scope_8hpp.html +++ b/docs/simple-api/Scope_8hpp.html @@ -44,7 +44,7 @@ Include dependency graph for Scope.hpp:  used inside VariableStore to implement variable scoping More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Scope_8hpp_source.html b/docs/simple-api/Scope_8hpp_source.html index 7b55c687..36b388d3 100644 --- a/docs/simple-api/Scope_8hpp_source.html +++ b/docs/simple-api/Scope_8hpp_source.html @@ -163,7 +163,7 @@ 00142 00143 #endif // _SCOPE_HPP -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/SequenceBuilder_8hpp.html b/docs/simple-api/SequenceBuilder_8hpp.html index 68701d02..a6f12a8e 100644 --- a/docs/simple-api/SequenceBuilder_8hpp.html +++ b/docs/simple-api/SequenceBuilder_8hpp.html @@ -41,7 +41,7 @@ Include dependency graph for SequenceBuilder.hpp: class  SequenceBuilder -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/SequenceBuilder_8hpp_source.html b/docs/simple-api/SequenceBuilder_8hpp_source.html index 80edbb16..7bbcaeb4 100644 --- a/docs/simple-api/SequenceBuilder_8hpp_source.html +++ b/docs/simple-api/SequenceBuilder_8hpp_source.html @@ -62,7 +62,7 @@ 00038 00039 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Sequence_8hpp.html b/docs/simple-api/Sequence_8hpp.html index ede33759..5537fb4c 100644 --- a/docs/simple-api/Sequence_8hpp.html +++ b/docs/simple-api/Sequence_8hpp.html @@ -69,7 +69,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Sequence_8hpp_source.html b/docs/simple-api/Sequence_8hpp_source.html index 427d0c42..6963cbd1 100644 --- a/docs/simple-api/Sequence_8hpp_source.html +++ b/docs/simple-api/Sequence_8hpp_source.html @@ -126,7 +126,7 @@ 00118 00119 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StackFrame_8hpp.html b/docs/simple-api/StackFrame_8hpp.html index 04ac1db5..e6c91557 100644 --- a/docs/simple-api/StackFrame_8hpp.html +++ b/docs/simple-api/StackFrame_8hpp.html @@ -45,7 +45,7 @@ Include dependency graph for StackFrame.hpp: namespace  xercesc -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StackFrame_8hpp_source.html b/docs/simple-api/StackFrame_8hpp_source.html index 7b3f3ffe..19553acd 100644 --- a/docs/simple-api/StackFrame_8hpp_source.html +++ b/docs/simple-api/StackFrame_8hpp_source.html @@ -100,7 +100,7 @@ 00079 00080 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StaticAnalysis_8hpp.html b/docs/simple-api/StaticAnalysis_8hpp.html index ff292252..afcabe34 100644 --- a/docs/simple-api/StaticAnalysis_8hpp.html +++ b/docs/simple-api/StaticAnalysis_8hpp.html @@ -44,7 +44,7 @@ Include dependency graph for StaticAnalysis.hpp: class  StaticAnalysis::VarEntry -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StaticAnalysis_8hpp_source.html b/docs/simple-api/StaticAnalysis_8hpp_source.html index e5af1c3f..d443ef9b 100644 --- a/docs/simple-api/StaticAnalysis_8hpp_source.html +++ b/docs/simple-api/StaticAnalysis_8hpp_source.html @@ -163,7 +163,7 @@ 00152 00153 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StaticContext_8hpp.html b/docs/simple-api/StaticContext_8hpp.html index ebff157f..a5af3d2f 100644 --- a/docs/simple-api/StaticContext_8hpp.html +++ b/docs/simple-api/StaticContext_8hpp.html @@ -88,7 +88,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StaticContext_8hpp_source.html b/docs/simple-api/StaticContext_8hpp_source.html index 664365d9..c0472a5c 100644 --- a/docs/simple-api/StaticContext_8hpp_source.html +++ b/docs/simple-api/StaticContext_8hpp_source.html @@ -228,7 +228,7 @@ 00314 00315 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StaticType_8hpp.html b/docs/simple-api/StaticType_8hpp.html index 3a2aac6f..b420a816 100644 --- a/docs/simple-api/StaticType_8hpp.html +++ b/docs/simple-api/StaticType_8hpp.html @@ -112,7 +112,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StaticType_8hpp_source.html b/docs/simple-api/StaticType_8hpp_source.html index 0938d784..74338410 100644 --- a/docs/simple-api/StaticType_8hpp_source.html +++ b/docs/simple-api/StaticType_8hpp_source.html @@ -187,7 +187,7 @@ 00172 00173 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StdInInputSource_8hpp.html b/docs/simple-api/StdInInputSource_8hpp.html index 4a9b64a4..6d83c8b4 100644 --- a/docs/simple-api/StdInInputSource_8hpp.html +++ b/docs/simple-api/StdInInputSource_8hpp.html @@ -58,7 +58,7 @@ Include dependency graph for StdInInputSource.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StdInInputSource_8hpp_source.html b/docs/simple-api/StdInInputSource_8hpp_source.html index 2c9e6fb4..b5d349fa 100644 --- a/docs/simple-api/StdInInputSource_8hpp_source.html +++ b/docs/simple-api/StdInInputSource_8hpp_source.html @@ -99,7 +99,7 @@ 00107 00108 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StdOutFormatTarget_8hpp.html b/docs/simple-api/StdOutFormatTarget_8hpp.html index 7920beb0..008280ed 100644 --- a/docs/simple-api/StdOutFormatTarget_8hpp.html +++ b/docs/simple-api/StdOutFormatTarget_8hpp.html @@ -57,7 +57,7 @@ Include dependency graph for StdOutFormatTarget.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StdOutFormatTarget_8hpp_source.html b/docs/simple-api/StdOutFormatTarget_8hpp_source.html index aa4af2e1..9ea2149c 100644 --- a/docs/simple-api/StdOutFormatTarget_8hpp_source.html +++ b/docs/simple-api/StdOutFormatTarget_8hpp_source.html @@ -77,7 +77,7 @@ 00056 00057 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StringPool_8hpp.html b/docs/simple-api/StringPool_8hpp.html index 0fa65885..7aabd037 100644 --- a/docs/simple-api/StringPool_8hpp.html +++ b/docs/simple-api/StringPool_8hpp.html @@ -45,7 +45,7 @@ Include dependency graph for StringPool.hpp: class  StringPool::Bucket -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/StringPool_8hpp_source.html b/docs/simple-api/StringPool_8hpp_source.html index bfed6cc8..d2b54ef8 100644 --- a/docs/simple-api/StringPool_8hpp_source.html +++ b/docs/simple-api/StringPool_8hpp_source.html @@ -120,7 +120,7 @@ 00099 00100 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Timezone_8hpp.html b/docs/simple-api/Timezone_8hpp.html index e8049b28..82f0ef3b 100644 --- a/docs/simple-api/Timezone_8hpp.html +++ b/docs/simple-api/Timezone_8hpp.html @@ -50,7 +50,7 @@ This graph shows which files directly or indirectly include this file: class  Timezone -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/Timezone_8hpp_source.html b/docs/simple-api/Timezone_8hpp_source.html index 8e4f5bb8..a3f194e7 100644 --- a/docs/simple-api/Timezone_8hpp_source.html +++ b/docs/simple-api/Timezone_8hpp_source.html @@ -82,7 +82,7 @@ 00074 00075 -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/URIResolver_8hpp.html b/docs/simple-api/URIResolver_8hpp.html index 843b9cf2..f593b9b6 100644 --- a/docs/simple-api/URIResolver_8hpp.html +++ b/docs/simple-api/URIResolver_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file:  This is an abstract class used to resolve URIs in different ways. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/URIResolver_8hpp_source.html b/docs/simple-api/URIResolver_8hpp_source.html index 75426d83..1ba89d78 100644 --- a/docs/simple-api/URIResolver_8hpp_source.html +++ b/docs/simple-api/URIResolver_8hpp_source.html @@ -68,7 +68,7 @@ 00070 }; 00071 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/URLInputSource_8hpp.html b/docs/simple-api/URLInputSource_8hpp.html index 69f4b5bd..fbb080a4 100644 --- a/docs/simple-api/URLInputSource_8hpp.html +++ b/docs/simple-api/URLInputSource_8hpp.html @@ -59,7 +59,7 @@ Include dependency graph for URLInputSource.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/URLInputSource_8hpp_source.html b/docs/simple-api/URLInputSource_8hpp_source.html index 2759cabe..6c603460 100644 --- a/docs/simple-api/URLInputSource_8hpp_source.html +++ b/docs/simple-api/URLInputSource_8hpp_source.html @@ -147,7 +147,7 @@ 00235 00236 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/UpdateFactory_8hpp.html b/docs/simple-api/UpdateFactory_8hpp.html index 04f29e41..809e2560 100644 --- a/docs/simple-api/UpdateFactory_8hpp.html +++ b/docs/simple-api/UpdateFactory_8hpp.html @@ -41,7 +41,7 @@ Include dependency graph for UpdateFactory.hpp: class  UpdateFactory -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/UpdateFactory_8hpp_source.html b/docs/simple-api/UpdateFactory_8hpp_source.html index 4d68ce5e..9434dfeb 100644 --- a/docs/simple-api/UpdateFactory_8hpp_source.html +++ b/docs/simple-api/UpdateFactory_8hpp_source.html @@ -83,7 +83,7 @@ 00059 00060 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/VarHashEntry_8hpp.html b/docs/simple-api/VarHashEntry_8hpp.html index c5a09a94..ce517bf2 100644 --- a/docs/simple-api/VarHashEntry_8hpp.html +++ b/docs/simple-api/VarHashEntry_8hpp.html @@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file:  The class that stores the values of the variables. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/VarHashEntry_8hpp_source.html b/docs/simple-api/VarHashEntry_8hpp_source.html index 2f3b7c66..a48f5248 100644 --- a/docs/simple-api/VarHashEntry_8hpp_source.html +++ b/docs/simple-api/VarHashEntry_8hpp_source.html @@ -61,7 +61,7 @@ 00042 #endif 00043 -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/VariableStore_8hpp.html b/docs/simple-api/VariableStore_8hpp.html index 75ef796f..8cee1bdb 100644 --- a/docs/simple-api/VariableStore_8hpp.html +++ b/docs/simple-api/VariableStore_8hpp.html @@ -40,7 +40,7 @@ Include dependency graph for VariableStore.hpp:  The pure virtual base class for accessing variables at runtime. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/VariableStore_8hpp_source.html b/docs/simple-api/VariableStore_8hpp_source.html index eec493ef..7b8b4703 100644 --- a/docs/simple-api/VariableStore_8hpp_source.html +++ b/docs/simple-api/VariableStore_8hpp_source.html @@ -63,7 +63,7 @@ 00043 00044 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/VariableTypeStore_8hpp.html b/docs/simple-api/VariableTypeStore_8hpp.html index 17849dd3..cdc3750e 100644 --- a/docs/simple-api/VariableTypeStore_8hpp.html +++ b/docs/simple-api/VariableTypeStore_8hpp.html @@ -42,7 +42,7 @@ Include dependency graph for VariableTypeStore.hpp:  This is the wrapper class for the variable store, which implements the lookup and scoping of simple variables. More...
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/VariableTypeStore_8hpp_source.html b/docs/simple-api/VariableTypeStore_8hpp_source.html index 9d14395c..2b6de605 100644 --- a/docs/simple-api/VariableTypeStore_8hpp_source.html +++ b/docs/simple-api/VariableTypeStore_8hpp_source.html @@ -79,7 +79,7 @@ 00070 00071 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XMLEntityResolver_8hpp.html b/docs/simple-api/XMLEntityResolver_8hpp.html index 372e15e7..7259133f 100644 --- a/docs/simple-api/XMLEntityResolver_8hpp.html +++ b/docs/simple-api/XMLEntityResolver_8hpp.html @@ -60,7 +60,7 @@ Include dependency graph for XMLEntityResolver.hpp: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XMLEntityResolver_8hpp_source.html b/docs/simple-api/XMLEntityResolver_8hpp_source.html index e4042a50..0c509896 100644 --- a/docs/simple-api/XMLEntityResolver_8hpp_source.html +++ b/docs/simple-api/XMLEntityResolver_8hpp_source.html @@ -90,7 +90,7 @@ 00177 00178 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XMLFormatter_8hpp.html b/docs/simple-api/XMLFormatter_8hpp.html index 415564c7..0ba680cd 100644 --- a/docs/simple-api/XMLFormatter_8hpp.html +++ b/docs/simple-api/XMLFormatter_8hpp.html @@ -66,7 +66,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XMLFormatter_8hpp_source.html b/docs/simple-api/XMLFormatter_8hpp_source.html index 6960bc06..7d30c41f 100644 --- a/docs/simple-api/XMLFormatter_8hpp_source.html +++ b/docs/simple-api/XMLFormatter_8hpp_source.html @@ -394,7 +394,7 @@ 00537 00538 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XMLResourceIdentifier_8hpp.html b/docs/simple-api/XMLResourceIdentifier_8hpp.html index a273ac43..cfeeff62 100644 --- a/docs/simple-api/XMLResourceIdentifier_8hpp.html +++ b/docs/simple-api/XMLResourceIdentifier_8hpp.html @@ -56,7 +56,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XMLResourceIdentifier_8hpp_source.html b/docs/simple-api/XMLResourceIdentifier_8hpp_source.html index c54215c2..1506a9cb 100644 --- a/docs/simple-api/XMLResourceIdentifier_8hpp_source.html +++ b/docs/simple-api/XMLResourceIdentifier_8hpp_source.html @@ -159,7 +159,7 @@ 00213 00214 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XMemory_8hpp.html b/docs/simple-api/XMemory_8hpp.html index bc5e9ffe..a42dec0f 100644 --- a/docs/simple-api/XMemory_8hpp.html +++ b/docs/simple-api/XMemory_8hpp.html @@ -64,7 +64,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XMemory_8hpp_source.html b/docs/simple-api/XMemory_8hpp_source.html index 9aa02937..cd6ef9d2 100644 --- a/docs/simple-api/XMemory_8hpp_source.html +++ b/docs/simple-api/XMemory_8hpp_source.html @@ -103,7 +103,7 @@ 00143 00144 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XPath2MemoryManager_8hpp.html b/docs/simple-api/XPath2MemoryManager_8hpp.html index 49b3e4d4..9f35ad98 100644 --- a/docs/simple-api/XPath2MemoryManager_8hpp.html +++ b/docs/simple-api/XPath2MemoryManager_8hpp.html @@ -116,7 +116,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XPath2MemoryManager_8hpp_source.html b/docs/simple-api/XPath2MemoryManager_8hpp_source.html index 8f4ad5cb..5fef6246 100644 --- a/docs/simple-api/XPath2MemoryManager_8hpp_source.html +++ b/docs/simple-api/XPath2MemoryManager_8hpp_source.html @@ -440,7 +440,7 @@ 00422 #endif //__XPATH2MEMORYMANAGER_HPP 00423 -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XQException_8hpp.html b/docs/simple-api/XQException_8hpp.html index c15f5a56..e5b27931 100644 --- a/docs/simple-api/XQException_8hpp.html +++ b/docs/simple-api/XQException_8hpp.html @@ -173,7 +173,7 @@ This graph shows which files directly or indirectly include this file: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XQException_8hpp_source.html b/docs/simple-api/XQException_8hpp_source.html index 971220b5..ef65e27c 100644 --- a/docs/simple-api/XQException_8hpp_source.html +++ b/docs/simple-api/XQException_8hpp_source.html @@ -97,7 +97,7 @@ 00073 #endif 00074 -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XQQuery_8hpp.html b/docs/simple-api/XQQuery_8hpp.html index 61c329c0..e9cd0e25 100644 --- a/docs/simple-api/XQQuery_8hpp.html +++ b/docs/simple-api/XQQuery_8hpp.html @@ -122,7 +122,7 @@ xercesc::RefHashTableOf
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XQQuery_8hpp_source.html b/docs/simple-api/XQQuery_8hpp_source.html index c1f067c9..54ceaee9 100644 --- a/docs/simple-api/XQQuery_8hpp_source.html +++ b/docs/simple-api/XQQuery_8hpp_source.html @@ -213,7 +213,7 @@ 00348 00349 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XQillaConfiguration_8hpp.html b/docs/simple-api/XQillaConfiguration_8hpp.html index 5d7e6d8c..6c117d2c 100644 --- a/docs/simple-api/XQillaConfiguration_8hpp.html +++ b/docs/simple-api/XQillaConfiguration_8hpp.html @@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file: class  XQillaConfiguration -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XQillaConfiguration_8hpp_source.html b/docs/simple-api/XQillaConfiguration_8hpp_source.html index dfb23bd2..69d3ff4d 100644 --- a/docs/simple-api/XQillaConfiguration_8hpp_source.html +++ b/docs/simple-api/XQillaConfiguration_8hpp_source.html @@ -86,7 +86,7 @@ 00062 00063 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XQilla_8hpp.html b/docs/simple-api/XQilla_8hpp.html index b678391a..196ec954 100644 --- a/docs/simple-api/XQilla_8hpp.html +++ b/docs/simple-api/XQilla_8hpp.html @@ -55,7 +55,7 @@ This graph shows which files directly or indirectly include this file: void CompileDelayedModule::compile (const XMLCh *queryFile) -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XQilla_8hpp_source.html b/docs/simple-api/XQilla_8hpp_source.html index d789f706..9d5c1d73 100644 --- a/docs/simple-api/XQilla_8hpp_source.html +++ b/docs/simple-api/XQilla_8hpp_source.html @@ -157,7 +157,7 @@ 00205 00206 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XercesConfiguration_8hpp.html b/docs/simple-api/XercesConfiguration_8hpp.html index 956fd29b..7a665cef 100644 --- a/docs/simple-api/XercesConfiguration_8hpp.html +++ b/docs/simple-api/XercesConfiguration_8hpp.html @@ -50,7 +50,7 @@ This graph shows which files directly or indirectly include this file: namespace  xercesc -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/XercesConfiguration_8hpp_source.html b/docs/simple-api/XercesConfiguration_8hpp_source.html index e2d58a65..633aefed 100644 --- a/docs/simple-api/XercesConfiguration_8hpp_source.html +++ b/docs/simple-api/XercesConfiguration_8hpp_source.html @@ -76,7 +76,7 @@ 00059 00060 #endif -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/annotated.html b/docs/simple-api/annotated.html index 2d5f4783..d865ff34 100644 --- a/docs/simple-api/annotated.html +++ b/docs/simple-api/annotated.html @@ -150,7 +150,7 @@ XQQueryEncapsulates a query expression -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classASTNodeEventGenerator-members.html b/docs/simple-api/classASTNodeEventGenerator-members.html index 010861ba..d1f8b2ea 100644 --- a/docs/simple-api/classASTNodeEventGenerator-members.html +++ b/docs/simple-api/classASTNodeEventGenerator-members.html @@ -43,7 +43,7 @@ ~EventGenerator()EventGenerator [inline, virtual] ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classASTNodeEventGenerator.html b/docs/simple-api/classASTNodeEventGenerator.html index e3c67eed..68e3944a 100644 --- a/docs/simple-api/classASTNodeEventGenerator.html +++ b/docs/simple-api/classASTNodeEventGenerator.html @@ -158,7 +158,7 @@ Inheritance diagram for ASTNodeEventGenerator:
  • EventGenerator.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATAnySimpleType-members.html b/docs/simple-api/classATAnySimpleType-members.html index 7afd5af4..c90bca1e 100644 --- a/docs/simple-api/classATAnySimpleType-members.html +++ b/docs/simple-api/classATAnySimpleType-members.html @@ -86,7 +86,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATAnySimpleType.html b/docs/simple-api/classATAnySimpleType.html index 29371c4e..657fadf8 100644 --- a/docs/simple-api/classATAnySimpleType.html +++ b/docs/simple-api/classATAnySimpleType.html @@ -182,7 +182,7 @@ Inheritance diagram for ATAnySimpleType:
  • ATAnySimpleType.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATAnyURIOrDerived-members.html b/docs/simple-api/classATAnyURIOrDerived-members.html index c756cbc2..49d918f3 100644 --- a/docs/simple-api/classATAnyURIOrDerived-members.html +++ b/docs/simple-api/classATAnyURIOrDerived-members.html @@ -86,7 +86,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATAnyURIOrDerived.html b/docs/simple-api/classATAnyURIOrDerived.html index 1dbab781..9caaf4ee 100644 --- a/docs/simple-api/classATAnyURIOrDerived.html +++ b/docs/simple-api/classATAnyURIOrDerived.html @@ -177,7 +177,7 @@ Inheritance diagram for ATAnyURIOrDerived:
  • ATAnyURIOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATBase64BinaryOrDerived-members.html b/docs/simple-api/classATBase64BinaryOrDerived-members.html index 992a9655..212c1434 100644 --- a/docs/simple-api/classATBase64BinaryOrDerived-members.html +++ b/docs/simple-api/classATBase64BinaryOrDerived-members.html @@ -87,7 +87,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATBase64BinaryOrDerived.html b/docs/simple-api/classATBase64BinaryOrDerived.html index c287dcff..fcb2bd78 100644 --- a/docs/simple-api/classATBase64BinaryOrDerived.html +++ b/docs/simple-api/classATBase64BinaryOrDerived.html @@ -209,7 +209,7 @@ Inheritance diagram for ATBase64BinaryOrDerived:
  • ATBase64BinaryOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATBooleanOrDerived-members.html b/docs/simple-api/classATBooleanOrDerived-members.html index b0352a1a..baeec384 100644 --- a/docs/simple-api/classATBooleanOrDerived-members.html +++ b/docs/simple-api/classATBooleanOrDerived-members.html @@ -89,7 +89,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATBooleanOrDerived.html b/docs/simple-api/classATBooleanOrDerived.html index d565bd09..84a9858f 100644 --- a/docs/simple-api/classATBooleanOrDerived.html +++ b/docs/simple-api/classATBooleanOrDerived.html @@ -263,7 +263,7 @@ Inheritance diagram for ATBooleanOrDerived:
  • ATBooleanOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDateOrDerived-members.html b/docs/simple-api/classATDateOrDerived-members.html index 9747d082..f53882bf 100644 --- a/docs/simple-api/classATDateOrDerived-members.html +++ b/docs/simple-api/classATDateOrDerived-members.html @@ -99,7 +99,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDateOrDerived.html b/docs/simple-api/classATDateOrDerived.html index 84d2e25a..d82e8fe4 100644 --- a/docs/simple-api/classATDateOrDerived.html +++ b/docs/simple-api/classATDateOrDerived.html @@ -555,7 +555,7 @@ Inheritance diagram for ATDateOrDerived:
  • ATDateOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDateTimeOrDerived-members.html b/docs/simple-api/classATDateTimeOrDerived-members.html index aa788869..d502eeed 100644 --- a/docs/simple-api/classATDateTimeOrDerived-members.html +++ b/docs/simple-api/classATDateTimeOrDerived-members.html @@ -103,7 +103,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDateTimeOrDerived.html b/docs/simple-api/classATDateTimeOrDerived.html index ed634d2a..776c6c3e 100644 --- a/docs/simple-api/classATDateTimeOrDerived.html +++ b/docs/simple-api/classATDateTimeOrDerived.html @@ -652,7 +652,7 @@ Inheritance diagram for ATDateTimeOrDerived:
  • ATDateTimeOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDecimalOrDerived-members.html b/docs/simple-api/classATDecimalOrDerived-members.html index 7a412136..9c547f92 100644 --- a/docs/simple-api/classATDecimalOrDerived-members.html +++ b/docs/simple-api/classATDecimalOrDerived-members.html @@ -140,7 +140,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDecimalOrDerived.html b/docs/simple-api/classATDecimalOrDerived.html index cabd7afe..9796838c 100644 --- a/docs/simple-api/classATDecimalOrDerived.html +++ b/docs/simple-api/classATDecimalOrDerived.html @@ -901,7 +901,7 @@ Inheritance diagram for ATDecimalOrDerived:
  • ATDecimalOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDoubleOrDerived-members.html b/docs/simple-api/classATDoubleOrDerived-members.html index a25e5a59..b5c4f509 100644 --- a/docs/simple-api/classATDoubleOrDerived-members.html +++ b/docs/simple-api/classATDoubleOrDerived-members.html @@ -139,7 +139,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDoubleOrDerived.html b/docs/simple-api/classATDoubleOrDerived.html index 35e2886a..239b06f6 100644 --- a/docs/simple-api/classATDoubleOrDerived.html +++ b/docs/simple-api/classATDoubleOrDerived.html @@ -856,7 +856,7 @@ Inheritance diagram for ATDoubleOrDerived:
  • ATDoubleOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDurationOrDerived-members.html b/docs/simple-api/classATDurationOrDerived-members.html index 0b717148..4f8db2ec 100644 --- a/docs/simple-api/classATDurationOrDerived-members.html +++ b/docs/simple-api/classATDurationOrDerived-members.html @@ -107,7 +107,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATDurationOrDerived.html b/docs/simple-api/classATDurationOrDerived.html index 21fc2387..b4c1aecc 100644 --- a/docs/simple-api/classATDurationOrDerived.html +++ b/docs/simple-api/classATDurationOrDerived.html @@ -667,7 +667,7 @@ Inheritance diagram for ATDurationOrDerived:
  • ATDurationOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATFloatOrDerived-members.html b/docs/simple-api/classATFloatOrDerived-members.html index b53a2ea4..897f2489 100644 --- a/docs/simple-api/classATFloatOrDerived-members.html +++ b/docs/simple-api/classATFloatOrDerived-members.html @@ -139,7 +139,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATFloatOrDerived.html b/docs/simple-api/classATFloatOrDerived.html index 9dea044d..a14b8ad9 100644 --- a/docs/simple-api/classATFloatOrDerived.html +++ b/docs/simple-api/classATFloatOrDerived.html @@ -879,7 +879,7 @@ Inheritance diagram for ATFloatOrDerived:
  • ATFloatOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGDayOrDerived-members.html b/docs/simple-api/classATGDayOrDerived-members.html index 6d79c9ca..6777ec15 100644 --- a/docs/simple-api/classATGDayOrDerived-members.html +++ b/docs/simple-api/classATGDayOrDerived-members.html @@ -89,7 +89,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGDayOrDerived.html b/docs/simple-api/classATGDayOrDerived.html index 2a75a49e..8934f1bf 100644 --- a/docs/simple-api/classATGDayOrDerived.html +++ b/docs/simple-api/classATGDayOrDerived.html @@ -282,7 +282,7 @@ Inheritance diagram for ATGDayOrDerived:
  • ATGDayOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGMonthDayOrDerived-members.html b/docs/simple-api/classATGMonthDayOrDerived-members.html index f139153d..69b76870 100644 --- a/docs/simple-api/classATGMonthDayOrDerived-members.html +++ b/docs/simple-api/classATGMonthDayOrDerived-members.html @@ -89,7 +89,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGMonthDayOrDerived.html b/docs/simple-api/classATGMonthDayOrDerived.html index 65fd31a9..6e4595d7 100644 --- a/docs/simple-api/classATGMonthDayOrDerived.html +++ b/docs/simple-api/classATGMonthDayOrDerived.html @@ -282,7 +282,7 @@ Inheritance diagram for ATGMonthDayOrDerived:
  • ATGMonthDayOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGMonthOrDerived-members.html b/docs/simple-api/classATGMonthOrDerived-members.html index 696ae9b3..2cdd73ca 100644 --- a/docs/simple-api/classATGMonthOrDerived-members.html +++ b/docs/simple-api/classATGMonthOrDerived-members.html @@ -89,7 +89,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGMonthOrDerived.html b/docs/simple-api/classATGMonthOrDerived.html index eb2aca30..4514d283 100644 --- a/docs/simple-api/classATGMonthOrDerived.html +++ b/docs/simple-api/classATGMonthOrDerived.html @@ -282,7 +282,7 @@ Inheritance diagram for ATGMonthOrDerived:
  • ATGMonthOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGYearMonthOrDerived-members.html b/docs/simple-api/classATGYearMonthOrDerived-members.html index 8baeca14..73cdf287 100644 --- a/docs/simple-api/classATGYearMonthOrDerived-members.html +++ b/docs/simple-api/classATGYearMonthOrDerived-members.html @@ -89,7 +89,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGYearMonthOrDerived.html b/docs/simple-api/classATGYearMonthOrDerived.html index ca6f253c..cdf45fe7 100644 --- a/docs/simple-api/classATGYearMonthOrDerived.html +++ b/docs/simple-api/classATGYearMonthOrDerived.html @@ -282,7 +282,7 @@ Inheritance diagram for ATGYearMonthOrDerived:
  • ATGYearMonthOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGYearOrDerived-members.html b/docs/simple-api/classATGYearOrDerived-members.html index 4326c454..52bcd1de 100644 --- a/docs/simple-api/classATGYearOrDerived-members.html +++ b/docs/simple-api/classATGYearOrDerived-members.html @@ -89,7 +89,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATGYearOrDerived.html b/docs/simple-api/classATGYearOrDerived.html index d838e201..ac363d59 100644 --- a/docs/simple-api/classATGYearOrDerived.html +++ b/docs/simple-api/classATGYearOrDerived.html @@ -282,7 +282,7 @@ Inheritance diagram for ATGYearOrDerived:
  • ATGYearOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATHexBinaryOrDerived-members.html b/docs/simple-api/classATHexBinaryOrDerived-members.html index 0bb7399a..4758e34e 100644 --- a/docs/simple-api/classATHexBinaryOrDerived-members.html +++ b/docs/simple-api/classATHexBinaryOrDerived-members.html @@ -87,7 +87,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATHexBinaryOrDerived.html b/docs/simple-api/classATHexBinaryOrDerived.html index 7ef44e24..b12b7f42 100644 --- a/docs/simple-api/classATHexBinaryOrDerived.html +++ b/docs/simple-api/classATHexBinaryOrDerived.html @@ -208,7 +208,7 @@ Inheritance diagram for ATHexBinaryOrDerived:
  • ATHexBinaryOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATNotationOrDerived-members.html b/docs/simple-api/classATNotationOrDerived-members.html index 22f7d42d..17af9664 100644 --- a/docs/simple-api/classATNotationOrDerived-members.html +++ b/docs/simple-api/classATNotationOrDerived-members.html @@ -87,7 +87,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATNotationOrDerived.html b/docs/simple-api/classATNotationOrDerived.html index 82aa289d..f522b99e 100644 --- a/docs/simple-api/classATNotationOrDerived.html +++ b/docs/simple-api/classATNotationOrDerived.html @@ -208,7 +208,7 @@ Inheritance diagram for ATNotationOrDerived:
  • ATNotationOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATQNameOrDerived-members.html b/docs/simple-api/classATQNameOrDerived-members.html index cb4c5289..b21c8660 100644 --- a/docs/simple-api/classATQNameOrDerived-members.html +++ b/docs/simple-api/classATQNameOrDerived-members.html @@ -90,7 +90,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATQNameOrDerived.html b/docs/simple-api/classATQNameOrDerived.html index 0dde0575..ba3d8a1f 100644 --- a/docs/simple-api/classATQNameOrDerived.html +++ b/docs/simple-api/classATQNameOrDerived.html @@ -281,7 +281,7 @@ Inheritance diagram for ATQNameOrDerived:
  • ATQNameOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATStringOrDerived-members.html b/docs/simple-api/classATStringOrDerived-members.html index ecb73901..11a84830 100644 --- a/docs/simple-api/classATStringOrDerived-members.html +++ b/docs/simple-api/classATStringOrDerived-members.html @@ -91,7 +91,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATStringOrDerived.html b/docs/simple-api/classATStringOrDerived.html index 6a153982..a6e7e856 100644 --- a/docs/simple-api/classATStringOrDerived.html +++ b/docs/simple-api/classATStringOrDerived.html @@ -335,7 +335,7 @@ Inheritance diagram for ATStringOrDerived:
  • ATStringOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATTimeOrDerived-members.html b/docs/simple-api/classATTimeOrDerived-members.html index aa883cf8..d569ef03 100644 --- a/docs/simple-api/classATTimeOrDerived-members.html +++ b/docs/simple-api/classATTimeOrDerived-members.html @@ -97,7 +97,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATTimeOrDerived.html b/docs/simple-api/classATTimeOrDerived.html index edd7272d..79503288 100644 --- a/docs/simple-api/classATTimeOrDerived.html +++ b/docs/simple-api/classATTimeOrDerived.html @@ -493,7 +493,7 @@ Inheritance diagram for ATTimeOrDerived:
  • ATTimeOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATUntypedAtomic-members.html b/docs/simple-api/classATUntypedAtomic-members.html index 60745a71..a4c5440d 100644 --- a/docs/simple-api/classATUntypedAtomic-members.html +++ b/docs/simple-api/classATUntypedAtomic-members.html @@ -87,7 +87,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classATUntypedAtomic.html b/docs/simple-api/classATUntypedAtomic.html index f296bbef..b41b5a50 100644 --- a/docs/simple-api/classATUntypedAtomic.html +++ b/docs/simple-api/classATUntypedAtomic.html @@ -193,7 +193,7 @@ Inheritance diagram for ATUntypedAtomic:
  • ATUntypedAtomic.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAnyAtomicType-members.html b/docs/simple-api/classAnyAtomicType-members.html index ba999de0..4610b8bd 100644 --- a/docs/simple-api/classAnyAtomicType-members.html +++ b/docs/simple-api/classAnyAtomicType-members.html @@ -86,7 +86,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAnyAtomicType.html b/docs/simple-api/classAnyAtomicType.html index b8f98959..77694abb 100644 --- a/docs/simple-api/classAnyAtomicType.html +++ b/docs/simple-api/classAnyAtomicType.html @@ -806,7 +806,7 @@ Inheritance diagram for AnyAtomicType:
  • AnyAtomicType.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoContextInfoReset-members.html b/docs/simple-api/classAutoContextInfoReset-members.html index 015b7735..b0b9a57e 100644 --- a/docs/simple-api/classAutoContextInfoReset-members.html +++ b/docs/simple-api/classAutoContextInfoReset-members.html @@ -35,7 +35,7 @@ resetContextInfo()AutoContextInfoReset [inline] ~AutoContextInfoReset()AutoContextInfoReset [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoContextInfoReset.html b/docs/simple-api/classAutoContextInfoReset.html index de5b9ded..42bf3c8d 100644 --- a/docs/simple-api/classAutoContextInfoReset.html +++ b/docs/simple-api/classAutoContextInfoReset.html @@ -180,7 +180,7 @@
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoContextItemTypeReset-members.html b/docs/simple-api/classAutoContextItemTypeReset-members.html index ae3aa945..a12eb7df 100644 --- a/docs/simple-api/classAutoContextItemTypeReset-members.html +++ b/docs/simple-api/classAutoContextItemTypeReset-members.html @@ -33,7 +33,7 @@ sType_AutoContextItemTypeReset [protected] ~AutoContextItemTypeReset()AutoContextItemTypeReset [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoContextItemTypeReset.html b/docs/simple-api/classAutoContextItemTypeReset.html index 3f9cdf3f..8673a4ce 100644 --- a/docs/simple-api/classAutoContextItemTypeReset.html +++ b/docs/simple-api/classAutoContextItemTypeReset.html @@ -137,7 +137,7 @@
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoDeallocate-members.html b/docs/simple-api/classAutoDeallocate-members.html index dbc40cc0..e3bee226 100644 --- a/docs/simple-api/classAutoDeallocate-members.html +++ b/docs/simple-api/classAutoDeallocate-members.html @@ -38,7 +38,7 @@ swap(TYPE *p)AutoDeallocate< TYPE > [inline] ~AutoDeallocate()AutoDeallocate< TYPE > [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoDeallocate.html b/docs/simple-api/classAutoDeallocate.html index fed97744..22f955bb 100644 --- a/docs/simple-api/classAutoDeallocate.html +++ b/docs/simple-api/classAutoDeallocate.html @@ -270,7 +270,7 @@ template<class TYPE>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoDelete-members.html b/docs/simple-api/classAutoDelete-members.html index aa7fa95e..c68b1fd1 100644 --- a/docs/simple-api/classAutoDelete-members.html +++ b/docs/simple-api/classAutoDelete-members.html @@ -37,7 +37,7 @@ swap(TYPE *p)AutoDelete< TYPE > [inline] ~AutoDelete()AutoDelete< TYPE > [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoDelete.html b/docs/simple-api/classAutoDelete.html index 0e043858..1ffa9853 100644 --- a/docs/simple-api/classAutoDelete.html +++ b/docs/simple-api/classAutoDelete.html @@ -229,7 +229,7 @@ template<class TYPE>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoDeleteArray-members.html b/docs/simple-api/classAutoDeleteArray-members.html index bfca94c1..6f9ca055 100644 --- a/docs/simple-api/classAutoDeleteArray-members.html +++ b/docs/simple-api/classAutoDeleteArray-members.html @@ -37,7 +37,7 @@ swap(TYPE *p)AutoDeleteArray< TYPE > [inline] ~AutoDeleteArray()AutoDeleteArray< TYPE > [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoDeleteArray.html b/docs/simple-api/classAutoDeleteArray.html index d542cb64..b8d78df0 100644 --- a/docs/simple-api/classAutoDeleteArray.html +++ b/docs/simple-api/classAutoDeleteArray.html @@ -225,7 +225,7 @@ template<class TYPE>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoDocumentCacheReset-members.html b/docs/simple-api/classAutoDocumentCacheReset-members.html index f7c9ff79..e726de8d 100644 --- a/docs/simple-api/classAutoDocumentCacheReset-members.html +++ b/docs/simple-api/classAutoDocumentCacheReset-members.html @@ -32,7 +32,7 @@ oldDCAutoDocumentCacheReset ~AutoDocumentCacheReset()AutoDocumentCacheReset [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoDocumentCacheReset.html b/docs/simple-api/classAutoDocumentCacheReset.html index 2ee3377b..d708ef63 100644 --- a/docs/simple-api/classAutoDocumentCacheReset.html +++ b/docs/simple-api/classAutoDocumentCacheReset.html @@ -106,7 +106,7 @@
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoMessageListenerReset-members.html b/docs/simple-api/classAutoMessageListenerReset-members.html index da295071..76333946 100644 --- a/docs/simple-api/classAutoMessageListenerReset-members.html +++ b/docs/simple-api/classAutoMessageListenerReset-members.html @@ -32,7 +32,7 @@ listener_AutoMessageListenerReset [protected] ~AutoMessageListenerReset()AutoMessageListenerReset [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoMessageListenerReset.html b/docs/simple-api/classAutoMessageListenerReset.html index 95347503..c37f9e50 100644 --- a/docs/simple-api/classAutoMessageListenerReset.html +++ b/docs/simple-api/classAutoMessageListenerReset.html @@ -116,7 +116,7 @@
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoNodeSetOrderingReset-members.html b/docs/simple-api/classAutoNodeSetOrderingReset-members.html index 9aea55ad..984ddb12 100644 --- a/docs/simple-api/classAutoNodeSetOrderingReset-members.html +++ b/docs/simple-api/classAutoNodeSetOrderingReset-members.html @@ -32,7 +32,7 @@ ordering_AutoNodeSetOrderingReset [protected] ~AutoNodeSetOrderingReset()AutoNodeSetOrderingReset [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoNodeSetOrderingReset.html b/docs/simple-api/classAutoNodeSetOrderingReset.html index d96da658..3e7a62d4 100644 --- a/docs/simple-api/classAutoNodeSetOrderingReset.html +++ b/docs/simple-api/classAutoNodeSetOrderingReset.html @@ -116,7 +116,7 @@
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoNsScopeReset-members.html b/docs/simple-api/classAutoNsScopeReset-members.html index 08d7e4c0..fcb5fe52 100644 --- a/docs/simple-api/classAutoNsScopeReset-members.html +++ b/docs/simple-api/classAutoNsScopeReset-members.html @@ -33,7 +33,7 @@ context_AutoNsScopeReset [protected] ~AutoNsScopeReset()AutoNsScopeReset [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoNsScopeReset.html b/docs/simple-api/classAutoNsScopeReset.html index 53203d6c..78d1364e 100644 --- a/docs/simple-api/classAutoNsScopeReset.html +++ b/docs/simple-api/classAutoNsScopeReset.html @@ -130,7 +130,7 @@
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoRegexGroupStoreReset-members.html b/docs/simple-api/classAutoRegexGroupStoreReset-members.html index 2de958b8..31935cb9 100644 --- a/docs/simple-api/classAutoRegexGroupStoreReset-members.html +++ b/docs/simple-api/classAutoRegexGroupStoreReset-members.html @@ -33,7 +33,7 @@ reset()AutoRegexGroupStoreReset [inline] ~AutoRegexGroupStoreReset()AutoRegexGroupStoreReset [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoRegexGroupStoreReset.html b/docs/simple-api/classAutoRegexGroupStoreReset.html index 762abd57..3bcb7610 100644 --- a/docs/simple-api/classAutoRegexGroupStoreReset.html +++ b/docs/simple-api/classAutoRegexGroupStoreReset.html @@ -135,7 +135,7 @@
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoRelease-members.html b/docs/simple-api/classAutoRelease-members.html index d371026e..89f80307 100644 --- a/docs/simple-api/classAutoRelease-members.html +++ b/docs/simple-api/classAutoRelease-members.html @@ -37,7 +37,7 @@ swap(TYPE *p)AutoRelease< TYPE > [inline] ~AutoRelease()AutoRelease< TYPE > [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoRelease.html b/docs/simple-api/classAutoRelease.html index b02ecfb5..3832c9c4 100644 --- a/docs/simple-api/classAutoRelease.html +++ b/docs/simple-api/classAutoRelease.html @@ -225,7 +225,7 @@ template<class TYPE>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoReset-members.html b/docs/simple-api/classAutoReset-members.html index b87f504d..cba302bf 100644 --- a/docs/simple-api/classAutoReset-members.html +++ b/docs/simple-api/classAutoReset-members.html @@ -33,7 +33,7 @@ reset()AutoReset< T > [inline] ~AutoReset()AutoReset< T > [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoReset.html b/docs/simple-api/classAutoReset.html index 1919f4d2..4d5c416d 100644 --- a/docs/simple-api/classAutoReset.html +++ b/docs/simple-api/classAutoReset.html @@ -137,7 +137,7 @@ template<typename T >
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoStackFrameReset-members.html b/docs/simple-api/classAutoStackFrameReset-members.html index a6c21187..07469597 100644 --- a/docs/simple-api/classAutoStackFrameReset-members.html +++ b/docs/simple-api/classAutoStackFrameReset-members.html @@ -33,7 +33,7 @@ reset()AutoStackFrameReset [inline] ~AutoStackFrameReset()AutoStackFrameReset [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoStackFrameReset.html b/docs/simple-api/classAutoStackFrameReset.html index 89bc105d..dec94af9 100644 --- a/docs/simple-api/classAutoStackFrameReset.html +++ b/docs/simple-api/classAutoStackFrameReset.html @@ -135,7 +135,7 @@
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoVariableStoreReset-members.html b/docs/simple-api/classAutoVariableStoreReset-members.html index a59caef7..2e476dbc 100644 --- a/docs/simple-api/classAutoVariableStoreReset-members.html +++ b/docs/simple-api/classAutoVariableStoreReset-members.html @@ -33,7 +33,7 @@ reset()AutoVariableStoreReset [inline] ~AutoVariableStoreReset()AutoVariableStoreReset [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classAutoVariableStoreReset.html b/docs/simple-api/classAutoVariableStoreReset.html index a54ca9df..6e688890 100644 --- a/docs/simple-api/classAutoVariableStoreReset.html +++ b/docs/simple-api/classAutoVariableStoreReset.html @@ -135,7 +135,7 @@
  • ContextHelpers.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classBaseInteractiveDebugger-members.html b/docs/simple-api/classBaseInteractiveDebugger-members.html index b19a1b42..95c52bd1 100644 --- a/docs/simple-api/classBaseInteractiveDebugger-members.html +++ b/docs/simple-api/classBaseInteractiveDebugger-members.html @@ -62,7 +62,7 @@ step_BaseInteractiveDebugger [protected] ~BaseInteractiveDebugger()BaseInteractiveDebugger [virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classBaseInteractiveDebugger.html b/docs/simple-api/classBaseInteractiveDebugger.html index aa1431a5..bcb01ebf 100644 --- a/docs/simple-api/classBaseInteractiveDebugger.html +++ b/docs/simple-api/classBaseInteractiveDebugger.html @@ -752,7 +752,7 @@ Inheritance diagram for BaseInteractiveDebugger:
  • InteractiveDebugger.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classCollation-members.html b/docs/simple-api/classCollation-members.html index d84a50b4..ad60e2c3 100644 --- a/docs/simple-api/classCollation-members.html +++ b/docs/simple-api/classCollation-members.html @@ -33,7 +33,7 @@ sort(Sequence data, const DynamicContext *context) const =0Collation [pure virtual] ~Collation()Collation [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classCollation.html b/docs/simple-api/classCollation.html index 2060df10..318634f7 100644 --- a/docs/simple-api/classCollation.html +++ b/docs/simple-api/classCollation.html @@ -150,7 +150,7 @@
  • Collation.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classContentSequenceFilter-members.html b/docs/simple-api/classContentSequenceFilter-members.html index a1246fc9..78cc70ce 100644 --- a/docs/simple-api/classContentSequenceFilter-members.html +++ b/docs/simple-api/classContentSequenceFilter-members.html @@ -46,7 +46,7 @@ textEvent(const XMLCh *chars, unsigned int length)ContentSequenceFilter [virtual] ~EventHandler()EventHandler [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classContentSequenceFilter.html b/docs/simple-api/classContentSequenceFilter.html index 40034cbf..95a62e43 100644 --- a/docs/simple-api/classContentSequenceFilter.html +++ b/docs/simple-api/classContentSequenceFilter.html @@ -432,7 +432,7 @@ Inheritance diagram for ContentSequenceFilter:
  • ContentSequenceFilter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDateOrTimeType-members.html b/docs/simple-api/classDateOrTimeType-members.html index 2eae9ea2..7ae78618 100644 --- a/docs/simple-api/classDateOrTimeType-members.html +++ b/docs/simple-api/classDateOrTimeType-members.html @@ -87,7 +87,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDateOrTimeType.html b/docs/simple-api/classDateOrTimeType.html index b9adb166..797c0532 100644 --- a/docs/simple-api/classDateOrTimeType.html +++ b/docs/simple-api/classDateOrTimeType.html @@ -109,7 +109,7 @@ Inheritance diagram for DateOrTimeType:
  • DateOrTimeType.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDebugCommand-members.html b/docs/simple-api/classDebugCommand-members.html index a60824be..f2467600 100644 --- a/docs/simple-api/classDebugCommand-members.html +++ b/docs/simple-api/classDebugCommand-members.html @@ -41,7 +41,7 @@ name_DebugCommand [protected] ~DebugCommand()DebugCommand [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDebugCommand.html b/docs/simple-api/classDebugCommand.html index 848f43a2..25b17aa1 100644 --- a/docs/simple-api/classDebugCommand.html +++ b/docs/simple-api/classDebugCommand.html @@ -304,7 +304,7 @@
  • InteractiveDebugger.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDebugListener-members.html b/docs/simple-api/classDebugListener-members.html index 3da02775..19d4d963 100644 --- a/docs/simple-api/classDebugListener-members.html +++ b/docs/simple-api/classDebugListener-members.html @@ -36,7 +36,7 @@ start(const StackFrame *stack, const DynamicContext *context)DebugListener [inline, virtual] ~DebugListener()DebugListener [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDebugListener.html b/docs/simple-api/classDebugListener.html index 31f62c64..319d52ff 100644 --- a/docs/simple-api/classDebugListener.html +++ b/docs/simple-api/classDebugListener.html @@ -251,7 +251,7 @@ Inheritance diagram for DebugListener:
  • DebugListener.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDocumentCache-members.html b/docs/simple-api/classDocumentCache-members.html index 7634d711..e9f41bf7 100644 --- a/docs/simple-api/classDocumentCache-members.html +++ b/docs/simple-api/classDocumentCache-members.html @@ -59,7 +59,7 @@ XMemory()xercesc::XMemory [inline, protected] ~DocumentCache()DocumentCache [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDocumentCache.html b/docs/simple-api/classDocumentCache.html index c3c54841..ca71cb07 100644 --- a/docs/simple-api/classDocumentCache.html +++ b/docs/simple-api/classDocumentCache.html @@ -610,7 +610,7 @@ xercesc::SchemaElementDecl * 
  • DocumentCache.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDynamicContext-members.html b/docs/simple-api/classDynamicContext-members.html index 6cfb0184..b2eb71f9 100644 --- a/docs/simple-api/classDynamicContext-members.html +++ b/docs/simple-api/classDynamicContext-members.html @@ -160,7 +160,7 @@ ~DynamicContext()DynamicContext [inline, virtual] ~StaticContext()StaticContext [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classDynamicContext.html b/docs/simple-api/classDynamicContext.html index 9f58fc84..1c4766ba 100644 --- a/docs/simple-api/classDynamicContext.html +++ b/docs/simple-api/classDynamicContext.html @@ -944,7 +944,7 @@ Inheritance diagram for DynamicContext:
  • DynamicContext.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classEventFilter-members.html b/docs/simple-api/classEventFilter-members.html index 8e7d6f15..9650b758 100644 --- a/docs/simple-api/classEventFilter-members.html +++ b/docs/simple-api/classEventFilter-members.html @@ -45,7 +45,7 @@ textEvent(const XMLCh *chars, unsigned int length)EventFilter [inline, virtual] ~EventHandler()EventHandler [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classEventFilter.html b/docs/simple-api/classEventFilter.html index bd0a95d5..ae1a5409 100644 --- a/docs/simple-api/classEventFilter.html +++ b/docs/simple-api/classEventFilter.html @@ -566,7 +566,7 @@ Inheritance diagram for EventFilter:
  • EventHandler.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classEventGenerator-members.html b/docs/simple-api/classEventGenerator-members.html index 116a00e7..943a83b0 100644 --- a/docs/simple-api/classEventGenerator-members.html +++ b/docs/simple-api/classEventGenerator-members.html @@ -39,7 +39,7 @@ ~EventGenerator()EventGenerator [inline, virtual] ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classEventGenerator.html b/docs/simple-api/classEventGenerator.html index 44c34e77..53da9454 100644 --- a/docs/simple-api/classEventGenerator.html +++ b/docs/simple-api/classEventGenerator.html @@ -186,7 +186,7 @@ Inheritance diagram for EventGenerator:
  • EventGenerator.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classEventHandler-members.html b/docs/simple-api/classEventHandler-members.html index 2b4c3420..632a2285 100644 --- a/docs/simple-api/classEventHandler-members.html +++ b/docs/simple-api/classEventHandler-members.html @@ -42,7 +42,7 @@ textEvent(const XMLCh *chars, unsigned int length)=0EventHandler [pure virtual] ~EventHandler()EventHandler [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classEventHandler.html b/docs/simple-api/classEventHandler.html index e79c3e5b..0cefa27c 100644 --- a/docs/simple-api/classEventHandler.html +++ b/docs/simple-api/classEventHandler.html @@ -506,7 +506,7 @@ Inheritance diagram for EventHandler:
  • EventHandler.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classEventSerializer-members.html b/docs/simple-api/classEventSerializer-members.html index a48b9a49..25e1465b 100644 --- a/docs/simple-api/classEventSerializer-members.html +++ b/docs/simple-api/classEventSerializer-members.html @@ -48,7 +48,7 @@ ~EventHandler()EventHandler [inline, virtual] ~EventSerializer()EventSerializer -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classEventSerializer.html b/docs/simple-api/classEventSerializer.html index 650e2e10..1567e19b 100644 --- a/docs/simple-api/classEventSerializer.html +++ b/docs/simple-api/classEventSerializer.html @@ -631,7 +631,7 @@ Inheritance diagram for EventSerializer:
  • EventSerializer.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classExternalFunction-members.html b/docs/simple-api/classExternalFunction-members.html index 9eeac0b3..c8d65d37 100644 --- a/docs/simple-api/classExternalFunction-members.html +++ b/docs/simple-api/classExternalFunction-members.html @@ -40,7 +40,7 @@ uriName_ExternalFunction [protected] ~ExternalFunction()ExternalFunction [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classExternalFunction.html b/docs/simple-api/classExternalFunction.html index 26951723..ed839621 100644 --- a/docs/simple-api/classExternalFunction.html +++ b/docs/simple-api/classExternalFunction.html @@ -292,7 +292,7 @@
  • ExternalFunction.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classExternalFunctionResolver-members.html b/docs/simple-api/classExternalFunctionResolver-members.html index df10d946..0c9293ca 100644 --- a/docs/simple-api/classExternalFunctionResolver-members.html +++ b/docs/simple-api/classExternalFunctionResolver-members.html @@ -30,7 +30,7 @@ resolveExternalFunction(const XMLCh *uri, const XMLCh *name, size_t numArgs, const StaticContext *context)=0ExternalFunctionResolver [pure virtual] ~ExternalFunctionResolver()ExternalFunctionResolver [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classExternalFunctionResolver.html b/docs/simple-api/classExternalFunctionResolver.html index 4bdfb42b..15bd9d58 100644 --- a/docs/simple-api/classExternalFunctionResolver.html +++ b/docs/simple-api/classExternalFunctionResolver.html @@ -101,7 +101,7 @@
  • ExternalFunctionResolver.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classExternalFunction_1_1Arguments-members.html b/docs/simple-api/classExternalFunction_1_1Arguments-members.html index 57962c86..993a56aa 100644 --- a/docs/simple-api/classExternalFunction_1_1Arguments-members.html +++ b/docs/simple-api/classExternalFunction_1_1Arguments-members.html @@ -30,7 +30,7 @@ getArgument(size_t index, DynamicContext *context) const =0ExternalFunction::Arguments [pure virtual] ~Arguments()ExternalFunction::Arguments [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classExternalFunction_1_1Arguments.html b/docs/simple-api/classExternalFunction_1_1Arguments.html index ea9f7bdf..77caab24 100644 --- a/docs/simple-api/classExternalFunction_1_1Arguments.html +++ b/docs/simple-api/classExternalFunction_1_1Arguments.html @@ -90,7 +90,7 @@
  • ExternalFunction.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classFastXDMConfiguration-members.html b/docs/simple-api/classFastXDMConfiguration-members.html index 692137b8..92952e45 100644 --- a/docs/simple-api/classFastXDMConfiguration-members.html +++ b/docs/simple-api/classFastXDMConfiguration-members.html @@ -45,7 +45,7 @@ XMemory()xercesc::XMemory [inline, protected] ~XQillaConfiguration()XQillaConfiguration [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classFastXDMConfiguration.html b/docs/simple-api/classFastXDMConfiguration.html index be9b9e90..6c463555 100644 --- a/docs/simple-api/classFastXDMConfiguration.html +++ b/docs/simple-api/classFastXDMConfiguration.html @@ -179,7 +179,7 @@ Inheritance diagram for FastXDMConfiguration:
  • FastXDMConfiguration.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classFunctionRef-members.html b/docs/simple-api/classFunctionRef-members.html index ca6ad2fd..0da784f2 100644 --- a/docs/simple-api/classFunctionRef-members.html +++ b/docs/simple-api/classFunctionRef-members.html @@ -52,7 +52,7 @@ typeToBuffer(DynamicContext *context, xercesc::XMLBuffer &buffer) const =0Item [pure virtual] ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classFunctionRef.html b/docs/simple-api/classFunctionRef.html index dd34b511..d63536e7 100644 --- a/docs/simple-api/classFunctionRef.html +++ b/docs/simple-api/classFunctionRef.html @@ -313,7 +313,7 @@ Inheritance diagram for FunctionRef:
  • FunctionRef.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classInputParser-members.html b/docs/simple-api/classInputParser-members.html index ec4a5e05..881780fc 100644 --- a/docs/simple-api/classInputParser-members.html +++ b/docs/simple-api/classInputParser-members.html @@ -30,7 +30,7 @@ Args typedefInputParser parse(std::istream &input, Args &args)InputParser -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classInputParser.html b/docs/simple-api/classInputParser.html index 0ac0ac99..e29a1527 100644 --- a/docs/simple-api/classInputParser.html +++ b/docs/simple-api/classInputParser.html @@ -82,7 +82,7 @@
  • InputParser.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classInteractiveDebugger-members.html b/docs/simple-api/classInteractiveDebugger-members.html index 03d34c3e..f3f3b994 100644 --- a/docs/simple-api/classInteractiveDebugger-members.html +++ b/docs/simple-api/classInteractiveDebugger-members.html @@ -56,7 +56,7 @@ ~BaseInteractiveDebugger()BaseInteractiveDebugger [private, virtual] ~DebugListener()DebugListener [inline, private, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classInteractiveDebugger.html b/docs/simple-api/classInteractiveDebugger.html index 41d0f2ed..08ae98b9 100644 --- a/docs/simple-api/classInteractiveDebugger.html +++ b/docs/simple-api/classInteractiveDebugger.html @@ -101,7 +101,7 @@ Inheritance diagram for InteractiveDebugger:
  • InteractiveDebugger.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classItem-members.html b/docs/simple-api/classItem-members.html index 643b6e21..1ac07bf8 100644 --- a/docs/simple-api/classItem-members.html +++ b/docs/simple-api/classItem-members.html @@ -46,7 +46,7 @@ typeToBuffer(DynamicContext *context, xercesc::XMLBuffer &buffer) const =0Item [pure virtual] ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classItem.html b/docs/simple-api/classItem.html index 6fda26f0..82d8d7eb 100644 --- a/docs/simple-api/classItem.html +++ b/docs/simple-api/classItem.html @@ -324,7 +324,7 @@ Inheritance diagram for Item:
  • Item.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classItemFactory-members.html b/docs/simple-api/classItemFactory-members.html index 293041fe..8f71ce10 100644 --- a/docs/simple-api/classItemFactory-members.html +++ b/docs/simple-api/classItemFactory-members.html @@ -83,7 +83,7 @@ XMemory()xercesc::XMemory [inline, protected] ~ItemFactory()ItemFactory [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classItemFactory.html b/docs/simple-api/classItemFactory.html index e66c477e..16a1cf0f 100644 --- a/docs/simple-api/classItemFactory.html +++ b/docs/simple-api/classItemFactory.html @@ -1669,7 +1669,7 @@ Inheritance diagram for ItemFactory:
  • ItemFactory.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classLocationInfo-members.html b/docs/simple-api/classLocationInfo-members.html index 9001ec50..8cfeb1c7 100644 --- a/docs/simple-api/classLocationInfo-members.html +++ b/docs/simple-api/classLocationInfo-members.html @@ -35,7 +35,7 @@ setLocationInfo(const XMLCh *file, unsigned int line, unsigned int column)LocationInfo [inline] setLocationInfo(const LocationInfo *o)LocationInfo [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classLocationInfo.html b/docs/simple-api/classLocationInfo.html index f29d3dc3..03c9f623 100644 --- a/docs/simple-api/classLocationInfo.html +++ b/docs/simple-api/classLocationInfo.html @@ -232,7 +232,7 @@ Inheritance diagram for LocationInfo:
  • LocationInfo.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classMessageListener-members.html b/docs/simple-api/classMessageListener-members.html index c1bee6a1..9481b0e1 100644 --- a/docs/simple-api/classMessageListener-members.html +++ b/docs/simple-api/classMessageListener-members.html @@ -31,7 +31,7 @@ warning(const XMLCh *message, const LocationInfo *location)=0MessageListener [pure virtual] ~MessageListener()MessageListener [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classMessageListener.html b/docs/simple-api/classMessageListener.html index dda0712e..0661fed7 100644 --- a/docs/simple-api/classMessageListener.html +++ b/docs/simple-api/classMessageListener.html @@ -136,7 +136,7 @@
  • MessageListener.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classModuleCache-members.html b/docs/simple-api/classModuleCache-members.html index 52d9339f..7e1ce5b3 100644 --- a/docs/simple-api/classModuleCache-members.html +++ b/docs/simple-api/classModuleCache-members.html @@ -42,7 +42,7 @@ put(XQQuery *module)ModuleCache XMemory()xercesc::XMemory [inline, protected] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classModuleCache.html b/docs/simple-api/classModuleCache.html index 953c02f2..87027a16 100644 --- a/docs/simple-api/classModuleCache.html +++ b/docs/simple-api/classModuleCache.html @@ -166,7 +166,7 @@ Inheritance diagram for ModuleCache:
  • XQQuery.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classModuleResolver-members.html b/docs/simple-api/classModuleResolver-members.html index 2c63f016..0817e77b 100644 --- a/docs/simple-api/classModuleResolver-members.html +++ b/docs/simple-api/classModuleResolver-members.html @@ -30,7 +30,7 @@ resolveModuleLocation(VectorOfStrings *result, const XMLCh *nsUri, const StaticContext *context)=0ModuleResolver [pure virtual] ~ModuleResolver()ModuleResolver [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classModuleResolver.html b/docs/simple-api/classModuleResolver.html index b51341b7..26faa4cd 100644 --- a/docs/simple-api/classModuleResolver.html +++ b/docs/simple-api/classModuleResolver.html @@ -98,7 +98,7 @@
  • ModuleResolver.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classNSFixupFilter-members.html b/docs/simple-api/classNSFixupFilter-members.html index 59507932..58b479b5 100644 --- a/docs/simple-api/classNSFixupFilter-members.html +++ b/docs/simple-api/classNSFixupFilter-members.html @@ -47,7 +47,7 @@ ~EventHandler()EventHandler [inline, virtual] ~NSFixupFilter()NSFixupFilter -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classNSFixupFilter.html b/docs/simple-api/classNSFixupFilter.html index 8a2345e3..6c64160d 100644 --- a/docs/simple-api/classNSFixupFilter.html +++ b/docs/simple-api/classNSFixupFilter.html @@ -331,7 +331,7 @@ Inheritance diagram for NSFixupFilter:
  • NSFixupFilter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classNode-members.html b/docs/simple-api/classNode-members.html index c7167038..4e507ecb 100644 --- a/docs/simple-api/classNode-members.html +++ b/docs/simple-api/classNode-members.html @@ -73,7 +73,7 @@ uniqueLessThan(const Node::Ptr &other, const DynamicContext *context) const =0Node [pure virtual] ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classNode.html b/docs/simple-api/classNode.html index 159cb925..b50aa61e 100644 --- a/docs/simple-api/classNode.html +++ b/docs/simple-api/classNode.html @@ -849,7 +849,7 @@ Inheritance diagram for Node:
  • Node.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classNumeric-members.html b/docs/simple-api/classNumeric-members.html index fa8eac12..c3c02d4b 100644 --- a/docs/simple-api/classNumeric-members.html +++ b/docs/simple-api/classNumeric-members.html @@ -139,7 +139,7 @@ YEAR_MONTH_DURATION enum valueAnyAtomicType ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classNumeric.html b/docs/simple-api/classNumeric.html index ba996cfb..56aa6d48 100644 --- a/docs/simple-api/classNumeric.html +++ b/docs/simple-api/classNumeric.html @@ -1472,7 +1472,7 @@ Inheritance diagram for Numeric:
  • Numeric.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classQueryPathTreeFilter-members.html b/docs/simple-api/classQueryPathTreeFilter-members.html index d23828dc..ebaa38a3 100644 --- a/docs/simple-api/classQueryPathTreeFilter-members.html +++ b/docs/simple-api/classQueryPathTreeFilter-members.html @@ -51,7 +51,7 @@ ~EventHandler()EventHandler [inline, virtual] ~QueryPathTreeFilter()QueryPathTreeFilter [virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classQueryPathTreeFilter.html b/docs/simple-api/classQueryPathTreeFilter.html index 51d38e28..28b24006 100644 --- a/docs/simple-api/classQueryPathTreeFilter.html +++ b/docs/simple-api/classQueryPathTreeFilter.html @@ -524,7 +524,7 @@ Inheritance diagram for QueryPathTreeFilter:
  • QueryPathTreeFilter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classRefCountPointer-members.html b/docs/simple-api/classRefCountPointer-members.html index 2028b24e..0b92b41e 100644 --- a/docs/simple-api/classRefCountPointer-members.html +++ b/docs/simple-api/classRefCountPointer-members.html @@ -39,7 +39,7 @@ RefCountPointer(const RefCountPointer< T > &o)RefCountPointer< T > [inline] ~RefCountPointer()RefCountPointer< T > [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classRefCountPointer.html b/docs/simple-api/classRefCountPointer.html index 85724073..f1a7c84a 100644 --- a/docs/simple-api/classRefCountPointer.html +++ b/docs/simple-api/classRefCountPointer.html @@ -285,7 +285,7 @@ template<class T>
  • ReferenceCounted.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classReferenceCounted-members.html b/docs/simple-api/classReferenceCounted-members.html index 382198d1..9bea57ed 100644 --- a/docs/simple-api/classReferenceCounted-members.html +++ b/docs/simple-api/classReferenceCounted-members.html @@ -34,7 +34,7 @@ ReferenceCounted()ReferenceCounted [inline] ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classReferenceCounted.html b/docs/simple-api/classReferenceCounted.html index 5e2d6744..fd821a7f 100644 --- a/docs/simple-api/classReferenceCounted.html +++ b/docs/simple-api/classReferenceCounted.html @@ -163,7 +163,7 @@ Inheritance diagram for ReferenceCounted:
  • ReferenceCounted.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classRegexGroupStore-members.html b/docs/simple-api/classRegexGroupStore-members.html index a0e3f80c..011b5106 100644 --- a/docs/simple-api/classRegexGroupStore-members.html +++ b/docs/simple-api/classRegexGroupStore-members.html @@ -30,7 +30,7 @@ getGroup(int index) const =0RegexGroupStore [pure virtual] ~RegexGroupStore()RegexGroupStore [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classRegexGroupStore.html b/docs/simple-api/classRegexGroupStore.html index 78ab0c03..49031f69 100644 --- a/docs/simple-api/classRegexGroupStore.html +++ b/docs/simple-api/classRegexGroupStore.html @@ -87,7 +87,7 @@
  • RegexGroupStore.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classResult-members.html b/docs/simple-api/classResult-members.html index 14ced0a5..5c6ca2ae 100644 --- a/docs/simple-api/classResult-members.html +++ b/docs/simple-api/classResult-members.html @@ -40,7 +40,7 @@ Result(const Result &o)Result ~Result()Result -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classResult.html b/docs/simple-api/classResult.html index 4584328a..9d124548 100644 --- a/docs/simple-api/classResult.html +++ b/docs/simple-api/classResult.html @@ -289,7 +289,7 @@
  • Result.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classResultImpl-members.html b/docs/simple-api/classResultImpl-members.html index 945d731f..74fb0eca 100644 --- a/docs/simple-api/classResultImpl-members.html +++ b/docs/simple-api/classResultImpl-members.html @@ -45,7 +45,7 @@ toSequence(DynamicContext *context)ResultImpl [virtual] ~ResultImpl()ResultImpl [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classResultImpl.html b/docs/simple-api/classResultImpl.html index 1b639b6d..4aadc7ac 100644 --- a/docs/simple-api/classResultImpl.html +++ b/docs/simple-api/classResultImpl.html @@ -279,7 +279,7 @@ Inheritance diagram for ResultImpl:
  • ResultImpl.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classSchemaValidatorFilter-members.html b/docs/simple-api/classSchemaValidatorFilter-members.html index bbf85416..521651c1 100644 --- a/docs/simple-api/classSchemaValidatorFilter-members.html +++ b/docs/simple-api/classSchemaValidatorFilter-members.html @@ -48,7 +48,7 @@ ~EventHandler()EventHandler [inline, virtual] ~SchemaValidatorFilter()SchemaValidatorFilter [virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classSchemaValidatorFilter.html b/docs/simple-api/classSchemaValidatorFilter.html index ed4b27f8..c69d35cf 100644 --- a/docs/simple-api/classSchemaValidatorFilter.html +++ b/docs/simple-api/classSchemaValidatorFilter.html @@ -484,7 +484,7 @@ Inheritance diagram for SchemaValidatorFilter:
  • SchemaValidatorFilter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classScope-members.html b/docs/simple-api/classScope-members.html index 65518b0c..709e79d9 100644 --- a/docs/simple-api/classScope-members.html +++ b/docs/simple-api/classScope-members.html @@ -50,7 +50,7 @@ XMemory()xercesc::XMemory [inline, protected] ~Scope()Scope< TYPE > [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classScope.html b/docs/simple-api/classScope.html index f715a719..84eba592 100644 --- a/docs/simple-api/classScope.html +++ b/docs/simple-api/classScope.html @@ -361,7 +361,7 @@ template<class TYPE >
  • Scope.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classSequence-members.html b/docs/simple-api/classSequence-members.html index 2d341a5a..926b083d 100644 --- a/docs/simple-api/classSequence-members.html +++ b/docs/simple-api/classSequence-members.html @@ -67,7 +67,7 @@ XMemory()xercesc::XMemory [inline, protected] ~Sequence()Sequence -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classSequence.html b/docs/simple-api/classSequence.html index 6b92a5aa..447f7861 100644 --- a/docs/simple-api/classSequence.html +++ b/docs/simple-api/classSequence.html @@ -732,7 +732,7 @@ VectorOfItems::const_reverse_iterator Sequence.hpp -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classSequenceBuilder-members.html b/docs/simple-api/classSequenceBuilder-members.html index dbb65d41..f93da490 100644 --- a/docs/simple-api/classSequenceBuilder-members.html +++ b/docs/simple-api/classSequenceBuilder-members.html @@ -51,7 +51,7 @@ ~EventHandler()EventHandler [inline, virtual] ~SequenceBuilder()SequenceBuilder [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classSequenceBuilder.html b/docs/simple-api/classSequenceBuilder.html index b0c47ea6..d1e1d7e6 100644 --- a/docs/simple-api/classSequenceBuilder.html +++ b/docs/simple-api/classSequenceBuilder.html @@ -82,7 +82,7 @@ Inheritance diagram for SequenceBuilder:
  • SequenceBuilder.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStackFrame-members.html b/docs/simple-api/classStackFrame-members.html index f24c8c64..78bdc45b 100644 --- a/docs/simple-api/classStackFrame-members.html +++ b/docs/simple-api/classStackFrame-members.html @@ -46,7 +46,7 @@ variables_StackFrame [protected] ~StackFrame()StackFrame [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStackFrame.html b/docs/simple-api/classStackFrame.html index 777a54d6..fbc0a8f6 100644 --- a/docs/simple-api/classStackFrame.html +++ b/docs/simple-api/classStackFrame.html @@ -356,7 +356,7 @@
  • StackFrame.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStaticAnalysis-members.html b/docs/simple-api/classStaticAnalysis-members.html index 9a38e977..9ff4eca7 100644 --- a/docs/simple-api/classStaticAnalysis-members.html +++ b/docs/simple-api/classStaticAnalysis-members.html @@ -79,7 +79,7 @@ variablesUsed() const StaticAnalysis variableUsed(const XMLCh *namespaceURI, const XMLCh *name)StaticAnalysis -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStaticAnalysis.html b/docs/simple-api/classStaticAnalysis.html index 80a7dd90..f8a47b89 100644 --- a/docs/simple-api/classStaticAnalysis.html +++ b/docs/simple-api/classStaticAnalysis.html @@ -947,7 +947,7 @@
  • StaticAnalysis.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStaticAnalysis_1_1VarEntry-members.html b/docs/simple-api/classStaticAnalysis_1_1VarEntry-members.html index 8021b53b..b44ee159 100644 --- a/docs/simple-api/classStaticAnalysis_1_1VarEntry-members.html +++ b/docs/simple-api/classStaticAnalysis_1_1VarEntry-members.html @@ -35,7 +35,7 @@ uriStaticAnalysis::VarEntry VarEntry()StaticAnalysis::VarEntry [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStaticAnalysis_1_1VarEntry.html b/docs/simple-api/classStaticAnalysis_1_1VarEntry.html index dca4321f..3fe19e99 100644 --- a/docs/simple-api/classStaticAnalysis_1_1VarEntry.html +++ b/docs/simple-api/classStaticAnalysis_1_1VarEntry.html @@ -179,7 +179,7 @@
  • StaticAnalysis.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStaticContext-members.html b/docs/simple-api/classStaticContext-members.html index 0ee7a377..5e946b60 100644 --- a/docs/simple-api/classStaticContext-members.html +++ b/docs/simple-api/classStaticContext-members.html @@ -124,7 +124,7 @@ XMemory()xercesc::XMemory [inline, protected] ~StaticContext()StaticContext [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStaticContext.html b/docs/simple-api/classStaticContext.html index 49bce318..34b9b9ff 100644 --- a/docs/simple-api/classStaticContext.html +++ b/docs/simple-api/classStaticContext.html @@ -1910,7 +1910,7 @@ Inheritance diagram for StaticContext:
  • StaticContext.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStaticType-members.html b/docs/simple-api/classStaticType-members.html index 65b7b556..4a06d720 100644 --- a/docs/simple-api/classStaticType-members.html +++ b/docs/simple-api/classStaticType-members.html @@ -111,7 +111,7 @@ YEAR_MONTH_DURATION_TYPE enum valueStaticType ~StaticType()StaticType -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStaticType.html b/docs/simple-api/classStaticType.html index f6a2b82d..83010c61 100644 --- a/docs/simple-api/classStaticType.html +++ b/docs/simple-api/classStaticType.html @@ -963,7 +963,7 @@ Inheritance diagram for StaticType:
  • StaticType.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStringPool-members.html b/docs/simple-api/classStringPool-members.html index 303d1bf3..09fe1ad7 100644 --- a/docs/simple-api/classStringPool-members.html +++ b/docs/simple-api/classStringPool-members.html @@ -38,7 +38,7 @@ StringPool(xercesc::MemoryManager *mm)StringPool ~StringPool()StringPool -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classStringPool.html b/docs/simple-api/classStringPool.html index 8a5eb6a3..f440e2ac 100644 --- a/docs/simple-api/classStringPool.html +++ b/docs/simple-api/classStringPool.html @@ -243,7 +243,7 @@
  • StringPool.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classTimezone-members.html b/docs/simple-api/classTimezone-members.html index 6e0f4647..9d0cc9b6 100644 --- a/docs/simple-api/classTimezone-members.html +++ b/docs/simple-api/classTimezone-members.html @@ -43,7 +43,7 @@ validate(const MAPM &tz)Timezone [static] ~ReferenceCounted()ReferenceCounted [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classTimezone.html b/docs/simple-api/classTimezone.html index 56b87474..cd80590c 100644 --- a/docs/simple-api/classTimezone.html +++ b/docs/simple-api/classTimezone.html @@ -257,7 +257,7 @@ Inheritance diagram for Timezone:
  • Timezone.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classURIResolver-members.html b/docs/simple-api/classURIResolver-members.html index 49686a2b..47e354d5 100644 --- a/docs/simple-api/classURIResolver-members.html +++ b/docs/simple-api/classURIResolver-members.html @@ -40,7 +40,7 @@ XMemory()xercesc::XMemory [inline, protected] ~URIResolver()URIResolver [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classURIResolver.html b/docs/simple-api/classURIResolver.html index d79988f1..c6f7dcc5 100644 --- a/docs/simple-api/classURIResolver.html +++ b/docs/simple-api/classURIResolver.html @@ -237,7 +237,7 @@ Inheritance diagram for URIResolver:
  • URIResolver.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classUpdateFactory-members.html b/docs/simple-api/classUpdateFactory-members.html index d3f279a8..d6bda016 100644 --- a/docs/simple-api/classUpdateFactory-members.html +++ b/docs/simple-api/classUpdateFactory-members.html @@ -53,7 +53,7 @@ XMemory()xercesc::XMemory [inline, protected] ~UpdateFactory()UpdateFactory [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classUpdateFactory.html b/docs/simple-api/classUpdateFactory.html index eac96c5c..a1015004 100644 --- a/docs/simple-api/classUpdateFactory.html +++ b/docs/simple-api/classUpdateFactory.html @@ -531,7 +531,7 @@ Inheritance diagram for UpdateFactory:
  • UpdateFactory.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classVarHashEntry-members.html b/docs/simple-api/classVarHashEntry-members.html index c0dd149b..38939fa8 100644 --- a/docs/simple-api/classVarHashEntry-members.html +++ b/docs/simple-api/classVarHashEntry-members.html @@ -38,7 +38,7 @@ XMemory()xercesc::XMemory [inline, protected] ~VarHashEntry()VarHashEntry< TYPE > [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classVarHashEntry.html b/docs/simple-api/classVarHashEntry.html index bf47337f..80007af7 100644 --- a/docs/simple-api/classVarHashEntry.html +++ b/docs/simple-api/classVarHashEntry.html @@ -121,7 +121,7 @@ template<class TYPE>
  • VarHashEntry.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classVariableStore-members.html b/docs/simple-api/classVariableStore-members.html index 9577d3d1..c1a2df8b 100644 --- a/docs/simple-api/classVariableStore-members.html +++ b/docs/simple-api/classVariableStore-members.html @@ -31,7 +31,7 @@ getVar(const XMLCh *namespaceURI, const XMLCh *name) const =0VariableStore [pure virtual] ~VariableStore()VariableStore [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classVariableStore.html b/docs/simple-api/classVariableStore.html index aa5b95f5..e6ff85cb 100644 --- a/docs/simple-api/classVariableStore.html +++ b/docs/simple-api/classVariableStore.html @@ -118,7 +118,7 @@
  • VariableStore.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classVariableTypeStore-members.html b/docs/simple-api/classVariableTypeStore-members.html index 449cad01..718e5b9b 100644 --- a/docs/simple-api/classVariableTypeStore-members.html +++ b/docs/simple-api/classVariableTypeStore-members.html @@ -44,7 +44,7 @@ XMemory()xercesc::XMemory [inline, protected] ~VariableTypeStore()VariableTypeStore [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classVariableTypeStore.html b/docs/simple-api/classVariableTypeStore.html index 9ae9824d..f29d9c01 100644 --- a/docs/simple-api/classVariableTypeStore.html +++ b/docs/simple-api/classVariableTypeStore.html @@ -312,7 +312,7 @@ Inheritance diagram for VariableTypeStore:
  • VariableTypeStore.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXPath2MemoryManager-members.html b/docs/simple-api/classXPath2MemoryManager-members.html index 8547a0c4..13702474 100644 --- a/docs/simple-api/classXPath2MemoryManager-members.html +++ b/docs/simple-api/classXPath2MemoryManager-members.html @@ -47,7 +47,7 @@ ~MemoryManager()xercesc::MemoryManager [inline, virtual] ~XPath2MemoryManager()XPath2MemoryManager [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXPath2MemoryManager.html b/docs/simple-api/classXPath2MemoryManager.html index 5af51f92..8dc57f45 100644 --- a/docs/simple-api/classXPath2MemoryManager.html +++ b/docs/simple-api/classXPath2MemoryManager.html @@ -364,7 +364,7 @@ Inheritance diagram for XPath2MemoryManager:
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQException-members.html b/docs/simple-api/classXQException-members.html index b05a48e7..d8e2ab60 100644 --- a/docs/simple-api/classXQException-members.html +++ b/docs/simple-api/classXQException-members.html @@ -43,7 +43,7 @@ XQException(const XMLCh *const type, const XMLCh *const functionName, const XMLCh *const reason, const LocationInfo *info, const char *cppFile, unsigned int cppLine)XQException [protected] ~XQException()XQException [virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQException.html b/docs/simple-api/classXQException.html index 1c5fc97f..ec7ea990 100644 --- a/docs/simple-api/classXQException.html +++ b/docs/simple-api/classXQException.html @@ -397,7 +397,7 @@
  • XQException.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQQuery-members.html b/docs/simple-api/classXQQuery-members.html index d550a214..033dc549 100644 --- a/docs/simple-api/classXQQuery-members.html +++ b/docs/simple-api/classXQQuery-members.html @@ -76,7 +76,7 @@ XMemory()xercesc::XMemory [inline, protected] ~XQQuery()XQQuery -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQQuery.html b/docs/simple-api/classXQQuery.html index e0bc52c7..e22135d2 100644 --- a/docs/simple-api/classXQQuery.html +++ b/docs/simple-api/classXQQuery.html @@ -1203,7 +1203,7 @@ Inheritance diagram for XQQuery:
  • XQQuery.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQilla-members.html b/docs/simple-api/classXQilla-members.html index 19e2fe0b..a29a9b38 100644 --- a/docs/simple-api/classXQilla-members.html +++ b/docs/simple-api/classXQilla-members.html @@ -69,7 +69,7 @@ XSLT3_FULLTEXT enum valueXQilla ~XQilla()XQilla -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQilla.html b/docs/simple-api/classXQilla.html index 756acc88..491b6bdf 100644 --- a/docs/simple-api/classXQilla.html +++ b/docs/simple-api/classXQilla.html @@ -516,7 +516,7 @@ Inheritance diagram for XQilla:
  • XQilla.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQillaAllocator-members.html b/docs/simple-api/classXQillaAllocator-members.html index b6122cb2..9f7d5d12 100644 --- a/docs/simple-api/classXQillaAllocator-members.html +++ b/docs/simple-api/classXQillaAllocator-members.html @@ -49,7 +49,7 @@ XQillaAllocator(xercesc::MemoryManager *memMgr)XQillaAllocator< _Tp > [inline] XQillaAllocator(const XQillaAllocator< _Tp > &o)XQillaAllocator< _Tp > [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQillaAllocator.html b/docs/simple-api/classXQillaAllocator.html index 94d8322d..9cbdb7d5 100644 --- a/docs/simple-api/classXQillaAllocator.html +++ b/docs/simple-api/classXQillaAllocator.html @@ -483,7 +483,7 @@ template<class _Tp>
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQillaConfiguration-members.html b/docs/simple-api/classXQillaConfiguration-members.html index ba4bf715..178ad242 100644 --- a/docs/simple-api/classXQillaConfiguration-members.html +++ b/docs/simple-api/classXQillaConfiguration-members.html @@ -45,7 +45,7 @@ XMemory()xercesc::XMemory [inline, protected] ~XQillaConfiguration()XQillaConfiguration [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXQillaConfiguration.html b/docs/simple-api/classXQillaConfiguration.html index 3b571d19..34cc2440 100644 --- a/docs/simple-api/classXQillaConfiguration.html +++ b/docs/simple-api/classXQillaConfiguration.html @@ -254,7 +254,7 @@ Inheritance diagram for XQillaConfiguration:
  • XQillaConfiguration.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXercesConfiguration-members.html b/docs/simple-api/classXercesConfiguration-members.html index 3646e864..2903459e 100644 --- a/docs/simple-api/classXercesConfiguration-members.html +++ b/docs/simple-api/classXercesConfiguration-members.html @@ -47,7 +47,7 @@ XMemory()xercesc::XMemory [inline, protected] ~XQillaConfiguration()XQillaConfiguration [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classXercesConfiguration.html b/docs/simple-api/classXercesConfiguration.html index 63c9b5e8..5f5ebca1 100644 --- a/docs/simple-api/classXercesConfiguration.html +++ b/docs/simple-api/classXercesConfiguration.html @@ -227,7 +227,7 @@ Inheritance diagram for XercesConfiguration:
  • XercesConfiguration.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classes.html b/docs/simple-api/classes.html index 1b00eb2f..d500bc66 100644 --- a/docs/simple-api/classes.html +++ b/docs/simple-api/classes.html @@ -47,7 +47,7 @@ BaseInteractiveDebugger::Quit   XQillaAllocator   Collation   
      R  
    XQillaConfiguration   ContentSequenceFilter   XQillaAllocator::rebind   XQQuery   
    A | B | C | D | E | F | I | L | M | N | Q | R | S | T | U | V | X
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1DOMDocument-members.html b/docs/simple-api/classxercesc_1_1DOMDocument-members.html index 59d522fe..d175d98d 100644 --- a/docs/simple-api/classxercesc_1_1DOMDocument-members.html +++ b/docs/simple-api/classxercesc_1_1DOMDocument-members.html @@ -127,7 +127,7 @@ ~DOMDocument()xercesc::DOMDocument [inline, virtual] ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1DOMDocument.html b/docs/simple-api/classxercesc_1_1DOMDocument.html index b40f387e..e6bd6ddc 100644 --- a/docs/simple-api/classxercesc_1_1DOMDocument.html +++ b/docs/simple-api/classxercesc_1_1DOMDocument.html @@ -1350,7 +1350,7 @@ Beware that when the DOMDocument.hpp -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1DOMNode-members.html b/docs/simple-api/classxercesc_1_1DOMNode-members.html index 6e9a58ff..1cb8bcac 100644 --- a/docs/simple-api/classxercesc_1_1DOMNode-members.html +++ b/docs/simple-api/classxercesc_1_1DOMNode-members.html @@ -89,7 +89,7 @@ TEXT_NODE enum valuexercesc::DOMNode ~DOMNode()xercesc::DOMNode [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1DOMNode.html b/docs/simple-api/classxercesc_1_1DOMNode.html index cc871fd6..33392edc 100644 --- a/docs/simple-api/classxercesc_1_1DOMNode.html +++ b/docs/simple-api/classxercesc_1_1DOMNode.html @@ -1490,7 +1490,7 @@ NOT_FOUND_ERR: Raised if oldChild is not a child of this node. DOMNode.hpp -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1DOMXPathNSResolver-members.html b/docs/simple-api/classxercesc_1_1DOMXPathNSResolver-members.html index 9f3bcdcd..23c9507c 100644 --- a/docs/simple-api/classxercesc_1_1DOMXPathNSResolver-members.html +++ b/docs/simple-api/classxercesc_1_1DOMXPathNSResolver-members.html @@ -34,7 +34,7 @@ release()=0xercesc::DOMXPathNSResolver [pure virtual] ~DOMXPathNSResolver()xercesc::DOMXPathNSResolver [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1DOMXPathNSResolver.html b/docs/simple-api/classxercesc_1_1DOMXPathNSResolver.html index e6a4e680..0f090a74 100644 --- a/docs/simple-api/classxercesc_1_1DOMXPathNSResolver.html +++ b/docs/simple-api/classxercesc_1_1DOMXPathNSResolver.html @@ -220,7 +220,7 @@
  • DOMXPathNSResolver.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1InputSource-members.html b/docs/simple-api/classxercesc_1_1InputSource-members.html index 00f17f48..e310c134 100644 --- a/docs/simple-api/classxercesc_1_1InputSource-members.html +++ b/docs/simple-api/classxercesc_1_1InputSource-members.html @@ -51,7 +51,7 @@ XMemory()xercesc::XMemory [inline, protected] ~InputSource()xercesc::InputSource [virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1InputSource.html b/docs/simple-api/classxercesc_1_1InputSource.html index 3f21a40b..d3f88caf 100644 --- a/docs/simple-api/classxercesc_1_1InputSource.html +++ b/docs/simple-api/classxercesc_1_1InputSource.html @@ -553,7 +553,7 @@ SAXParseException::getSystemId
  • InputSource.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1LocalFileFormatTarget-members.html b/docs/simple-api/classxercesc_1_1LocalFileFormatTarget-members.html index c30e1598..9573446a 100644 --- a/docs/simple-api/classxercesc_1_1LocalFileFormatTarget-members.html +++ b/docs/simple-api/classxercesc_1_1LocalFileFormatTarget-members.html @@ -42,7 +42,7 @@ ~LocalFileFormatTarget()xercesc::LocalFileFormatTarget ~XMLFormatTarget()xercesc::XMLFormatTarget [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1LocalFileFormatTarget.html b/docs/simple-api/classxercesc_1_1LocalFileFormatTarget.html index 9042a5bb..e16c8690 100644 --- a/docs/simple-api/classxercesc_1_1LocalFileFormatTarget.html +++ b/docs/simple-api/classxercesc_1_1LocalFileFormatTarget.html @@ -181,7 +181,7 @@ Inheritance diagram for xercesc::LocalFileFormatTarget:
  • LocalFileFormatTarget.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1LocalFileInputSource-members.html b/docs/simple-api/classxercesc_1_1LocalFileInputSource-members.html index 01af233d..25a79172 100644 --- a/docs/simple-api/classxercesc_1_1LocalFileInputSource-members.html +++ b/docs/simple-api/classxercesc_1_1LocalFileInputSource-members.html @@ -54,7 +54,7 @@ ~InputSource()xercesc::InputSource [virtual] ~LocalFileInputSource()xercesc::LocalFileInputSource -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1LocalFileInputSource.html b/docs/simple-api/classxercesc_1_1LocalFileInputSource.html index 9b235832..679da2da 100644 --- a/docs/simple-api/classxercesc_1_1LocalFileInputSource.html +++ b/docs/simple-api/classxercesc_1_1LocalFileInputSource.html @@ -207,7 +207,7 @@ Inheritance diagram for xercesc::LocalFileInputSource:
  • LocalFileInputSource.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1MemBufFormatTarget-members.html b/docs/simple-api/classxercesc_1_1MemBufFormatTarget-members.html index 22e8fc25..25a788e9 100644 --- a/docs/simple-api/classxercesc_1_1MemBufFormatTarget-members.html +++ b/docs/simple-api/classxercesc_1_1MemBufFormatTarget-members.html @@ -44,7 +44,7 @@ ~MemBufFormatTarget()xercesc::MemBufFormatTarget ~XMLFormatTarget()xercesc::XMLFormatTarget [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1MemBufFormatTarget.html b/docs/simple-api/classxercesc_1_1MemBufFormatTarget.html index 7b91e9e2..3203ad6c 100644 --- a/docs/simple-api/classxercesc_1_1MemBufFormatTarget.html +++ b/docs/simple-api/classxercesc_1_1MemBufFormatTarget.html @@ -199,7 +199,7 @@ Inheritance diagram for xercesc::MemBufFormatTarget:
  • MemBufFormatTarget.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1MemBufInputSource-members.html b/docs/simple-api/classxercesc_1_1MemBufInputSource-members.html index a3981b39..e3298a72 100644 --- a/docs/simple-api/classxercesc_1_1MemBufInputSource-members.html +++ b/docs/simple-api/classxercesc_1_1MemBufInputSource-members.html @@ -56,7 +56,7 @@ ~InputSource()xercesc::InputSource [virtual] ~MemBufInputSource()xercesc::MemBufInputSource -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1MemBufInputSource.html b/docs/simple-api/classxercesc_1_1MemBufInputSource.html index c770abfc..d344cee7 100644 --- a/docs/simple-api/classxercesc_1_1MemBufInputSource.html +++ b/docs/simple-api/classxercesc_1_1MemBufInputSource.html @@ -294,7 +294,7 @@ Inheritance diagram for xercesc::MemBufInputSource:
  • MemBufInputSource.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1MemoryManager-members.html b/docs/simple-api/classxercesc_1_1MemoryManager-members.html index 3456e1d6..ebe21ecd 100644 --- a/docs/simple-api/classxercesc_1_1MemoryManager-members.html +++ b/docs/simple-api/classxercesc_1_1MemoryManager-members.html @@ -33,7 +33,7 @@ MemoryManager()xercesc::MemoryManager [inline, protected] ~MemoryManager()xercesc::MemoryManager [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1MemoryManager.html b/docs/simple-api/classxercesc_1_1MemoryManager.html index 825e2045..c41e8963 100644 --- a/docs/simple-api/classxercesc_1_1MemoryManager.html +++ b/docs/simple-api/classxercesc_1_1MemoryManager.html @@ -192,7 +192,7 @@ Inheritance diagram for xercesc::MemoryManager:
  • MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1StdInInputSource-members.html b/docs/simple-api/classxercesc_1_1StdInInputSource-members.html index 8ac5b94a..ae64b7e5 100644 --- a/docs/simple-api/classxercesc_1_1StdInInputSource-members.html +++ b/docs/simple-api/classxercesc_1_1StdInInputSource-members.html @@ -53,7 +53,7 @@ ~InputSource()xercesc::InputSource [virtual] ~StdInInputSource()xercesc::StdInInputSource [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1StdInInputSource.html b/docs/simple-api/classxercesc_1_1StdInInputSource.html index f4a7c44c..cc61b453 100644 --- a/docs/simple-api/classxercesc_1_1StdInInputSource.html +++ b/docs/simple-api/classxercesc_1_1StdInInputSource.html @@ -129,7 +129,7 @@ Inheritance diagram for xercesc::StdInInputSource:
  • StdInInputSource.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1StdOutFormatTarget-members.html b/docs/simple-api/classxercesc_1_1StdOutFormatTarget-members.html index c11405a0..b7928d5c 100644 --- a/docs/simple-api/classxercesc_1_1StdOutFormatTarget-members.html +++ b/docs/simple-api/classxercesc_1_1StdOutFormatTarget-members.html @@ -41,7 +41,7 @@ ~StdOutFormatTarget()xercesc::StdOutFormatTarget ~XMLFormatTarget()xercesc::XMLFormatTarget [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1StdOutFormatTarget.html b/docs/simple-api/classxercesc_1_1StdOutFormatTarget.html index 028d0426..b22d78c4 100644 --- a/docs/simple-api/classxercesc_1_1StdOutFormatTarget.html +++ b/docs/simple-api/classxercesc_1_1StdOutFormatTarget.html @@ -143,7 +143,7 @@ Inheritance diagram for xercesc::StdOutFormatTarget:
  • StdOutFormatTarget.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1URLInputSource-members.html b/docs/simple-api/classxercesc_1_1URLInputSource-members.html index 3483935d..d50c8453 100644 --- a/docs/simple-api/classxercesc_1_1URLInputSource-members.html +++ b/docs/simple-api/classxercesc_1_1URLInputSource-members.html @@ -58,7 +58,7 @@ ~InputSource()xercesc::InputSource [virtual] ~URLInputSource()xercesc::URLInputSource -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1URLInputSource.html b/docs/simple-api/classxercesc_1_1URLInputSource.html index 0b2eb5f6..b8d6ac87 100644 --- a/docs/simple-api/classxercesc_1_1URLInputSource.html +++ b/docs/simple-api/classxercesc_1_1URLInputSource.html @@ -366,7 +366,7 @@ Inheritance diagram for xercesc::URLInputSource:
  • URLInputSource.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLDeleter-members.html b/docs/simple-api/classxercesc_1_1XMLDeleter-members.html index 37c84526..f33b2581 100644 --- a/docs/simple-api/classxercesc_1_1XMLDeleter-members.html +++ b/docs/simple-api/classxercesc_1_1XMLDeleter-members.html @@ -30,7 +30,7 @@ XMLDeleter()xercesc::XMLDeleter [inline, protected] ~XMLDeleter()xercesc::XMLDeleter [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLDeleter.html b/docs/simple-api/classxercesc_1_1XMLDeleter.html index 5188cd6d..9af0394d 100644 --- a/docs/simple-api/classxercesc_1_1XMLDeleter.html +++ b/docs/simple-api/classxercesc_1_1XMLDeleter.html @@ -77,7 +77,7 @@
  • PlatformUtils.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLEntityResolver-members.html b/docs/simple-api/classxercesc_1_1XMLEntityResolver-members.html index 328bb52e..02f7c8c1 100644 --- a/docs/simple-api/classxercesc_1_1XMLEntityResolver-members.html +++ b/docs/simple-api/classxercesc_1_1XMLEntityResolver-members.html @@ -31,7 +31,7 @@ XMLEntityResolver()xercesc::XMLEntityResolver [inline, protected] ~XMLEntityResolver()xercesc::XMLEntityResolver [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLEntityResolver.html b/docs/simple-api/classxercesc_1_1XMLEntityResolver.html index caf6341c..9e8a78a4 100644 --- a/docs/simple-api/classxercesc_1_1XMLEntityResolver.html +++ b/docs/simple-api/classxercesc_1_1XMLEntityResolver.html @@ -173,7 +173,7 @@ HandlerBase::HandlerBase
  • XMLEntityResolver.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLFormatTarget-members.html b/docs/simple-api/classxercesc_1_1XMLFormatTarget-members.html index e6a4dc34..1e384ce4 100644 --- a/docs/simple-api/classxercesc_1_1XMLFormatTarget-members.html +++ b/docs/simple-api/classxercesc_1_1XMLFormatTarget-members.html @@ -39,7 +39,7 @@ XMLFormatTarget()xercesc::XMLFormatTarget [inline, protected] ~XMLFormatTarget()xercesc::XMLFormatTarget [inline, virtual] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLFormatTarget.html b/docs/simple-api/classxercesc_1_1XMLFormatTarget.html index acb6d12f..afd1aa6f 100644 --- a/docs/simple-api/classxercesc_1_1XMLFormatTarget.html +++ b/docs/simple-api/classxercesc_1_1XMLFormatTarget.html @@ -141,7 +141,7 @@ Inheritance diagram for xercesc::XMLFormatTarget:
  • XMLFormatter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLFormatter-members.html b/docs/simple-api/classxercesc_1_1XMLFormatter-members.html index c2a0ce63..36d40e86 100644 --- a/docs/simple-api/classxercesc_1_1XMLFormatter-members.html +++ b/docs/simple-api/classxercesc_1_1XMLFormatter-members.html @@ -65,7 +65,7 @@ XMLFormatter(const char *const outEncoding, XMLFormatTarget *const target, const EscapeFlags escapeFlags=NoEscapes, const UnRepFlags unrepFlags=UnRep_Fail, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)xercesc::XMLFormatter ~XMLFormatter()xercesc::XMLFormatter -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLFormatter.html b/docs/simple-api/classxercesc_1_1XMLFormatter.html index cd872332..b7ec90a8 100644 --- a/docs/simple-api/classxercesc_1_1XMLFormatter.html +++ b/docs/simple-api/classxercesc_1_1XMLFormatter.html @@ -755,7 +755,7 @@ Inheritance diagram for xercesc::XMLFormatter:
  • XMLFormatter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLPlatformUtils-members.html b/docs/simple-api/classxercesc_1_1XMLPlatformUtils-members.html index 2b0a0555..852eec1b 100644 --- a/docs/simple-api/classxercesc_1_1XMLPlatformUtils-members.html +++ b/docs/simple-api/classxercesc_1_1XMLPlatformUtils-members.html @@ -73,7 +73,7 @@ weavePaths(const XMLCh *const basePath, const XMLCh *const relativePath, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)xercesc::XMLPlatformUtils [static] writeBufferToFile(FileHandle const theFile, XMLSize_t toWrite, const XMLByte *const toFlush, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)xercesc::XMLPlatformUtils [static] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLPlatformUtils.html b/docs/simple-api/classxercesc_1_1XMLPlatformUtils.html index 4c5e09aa..d264d4b0 100644 --- a/docs/simple-api/classxercesc_1_1XMLPlatformUtils.html +++ b/docs/simple-api/classxercesc_1_1XMLPlatformUtils.html @@ -1525,7 +1525,7 @@
  • PlatformUtils.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLResourceIdentifier-members.html b/docs/simple-api/classxercesc_1_1XMLResourceIdentifier-members.html index ffd819be..45607678 100644 --- a/docs/simple-api/classxercesc_1_1XMLResourceIdentifier-members.html +++ b/docs/simple-api/classxercesc_1_1XMLResourceIdentifier-members.html @@ -44,7 +44,7 @@ XMLResourceIdentifier(const ResourceIdentifierType resourceIdentitiferType, const XMLCh *const systemId, const XMLCh *const nameSpace=0, const XMLCh *const publicId=0, const XMLCh *const baseURI=0, const Locator *locator=0)xercesc::XMLResourceIdentifier [inline] ~XMLResourceIdentifier()xercesc::XMLResourceIdentifier [inline] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMLResourceIdentifier.html b/docs/simple-api/classxercesc_1_1XMLResourceIdentifier.html index caa67320..2149bd0a 100644 --- a/docs/simple-api/classxercesc_1_1XMLResourceIdentifier.html +++ b/docs/simple-api/classxercesc_1_1XMLResourceIdentifier.html @@ -348,7 +348,7 @@
  • XMLResourceIdentifier.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMemory-members.html b/docs/simple-api/classxercesc_1_1XMemory-members.html index b7a30f1f..6c79bfac 100644 --- a/docs/simple-api/classxercesc_1_1XMemory-members.html +++ b/docs/simple-api/classxercesc_1_1XMemory-members.html @@ -35,7 +35,7 @@ operator new(size_t size, void *ptr)xercesc::XMemory XMemory()xercesc::XMemory [inline, protected] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/classxercesc_1_1XMemory.html b/docs/simple-api/classxercesc_1_1XMemory.html index 67320dc4..2e8cdadf 100644 --- a/docs/simple-api/classxercesc_1_1XMemory.html +++ b/docs/simple-api/classxercesc_1_1XMemory.html @@ -290,7 +290,7 @@ Inheritance diagram for xercesc::XMemory:
  • XMemory.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/examples.html b/docs/simple-api/examples.html index 0ff48f49..7e2b4ee5 100644 --- a/docs/simple-api/examples.html +++ b/docs/simple-api/examples.html @@ -25,7 +25,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/files.html b/docs/simple-api/files.html index 81c635ad..9fe3d893 100644 --- a/docs/simple-api/files.html +++ b/docs/simple-api/files.html @@ -117,7 +117,7 @@ XQQuery.hpp [code] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions.html b/docs/simple-api/functions.html index acb11bf2..b9634512 100644 --- a/docs/simple-api/functions.html +++ b/docs/simple-api/functions.html @@ -99,7 +99,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x61.html b/docs/simple-api/functions_0x61.html index fef76b78..efe7e44e 100644 --- a/docs/simple-api/functions_0x61.html +++ b/docs/simple-api/functions_0x61.html @@ -412,7 +412,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x62.html b/docs/simple-api/functions_0x62.html index e9a193ff..e22d404c 100644 --- a/docs/simple-api/functions_0x62.html +++ b/docs/simple-api/functions_0x62.html @@ -111,7 +111,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x63.html b/docs/simple-api/functions_0x63.html index 1f0a2675..9ebe0f8c 100644 --- a/docs/simple-api/functions_0x63.html +++ b/docs/simple-api/functions_0x63.html @@ -490,7 +490,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x64.html b/docs/simple-api/functions_0x64.html index 608b27bc..bfc3da8e 100644 --- a/docs/simple-api/functions_0x64.html +++ b/docs/simple-api/functions_0x64.html @@ -259,7 +259,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x65.html b/docs/simple-api/functions_0x65.html index 429288c7..4f63e0f0 100644 --- a/docs/simple-api/functions_0x65.html +++ b/docs/simple-api/functions_0x65.html @@ -193,7 +193,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x66.html b/docs/simple-api/functions_0x66.html index 7c8b8044..72b45015 100644 --- a/docs/simple-api/functions_0x66.html +++ b/docs/simple-api/functions_0x66.html @@ -185,7 +185,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x67.html b/docs/simple-api/functions_0x67.html index 019d7894..6a31c8e6 100644 --- a/docs/simple-api/functions_0x67.html +++ b/docs/simple-api/functions_0x67.html @@ -817,7 +817,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x68.html b/docs/simple-api/functions_0x68.html index 2cad537c..5badb0d9 100644 --- a/docs/simple-api/functions_0x68.html +++ b/docs/simple-api/functions_0x68.html @@ -104,7 +104,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x69.html b/docs/simple-api/functions_0x69.html index 6c09340d..56d678b3 100644 --- a/docs/simple-api/functions_0x69.html +++ b/docs/simple-api/functions_0x69.html @@ -274,7 +274,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x6a.html b/docs/simple-api/functions_0x6a.html index 0ce5e431..e4a65f38 100644 --- a/docs/simple-api/functions_0x6a.html +++ b/docs/simple-api/functions_0x6a.html @@ -75,7 +75,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x6c.html b/docs/simple-api/functions_0x6c.html index 1169725d..bc1af478 100644 --- a/docs/simple-api/functions_0x6c.html +++ b/docs/simple-api/functions_0x6c.html @@ -144,7 +144,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x6d.html b/docs/simple-api/functions_0x6d.html index 3f434c2c..9f1a808f 100644 --- a/docs/simple-api/functions_0x6d.html +++ b/docs/simple-api/functions_0x6d.html @@ -130,7 +130,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x6e.html b/docs/simple-api/functions_0x6e.html index 246d6258..0f34bbf3 100644 --- a/docs/simple-api/functions_0x6e.html +++ b/docs/simple-api/functions_0x6e.html @@ -197,7 +197,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x6f.html b/docs/simple-api/functions_0x6f.html index 4cfc29ed..4a7f4696 100644 --- a/docs/simple-api/functions_0x6f.html +++ b/docs/simple-api/functions_0x6f.html @@ -191,7 +191,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x70.html b/docs/simple-api/functions_0x70.html index 463ae0c8..beb4d2bf 100644 --- a/docs/simple-api/functions_0x70.html +++ b/docs/simple-api/functions_0x70.html @@ -200,7 +200,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x71.html b/docs/simple-api/functions_0x71.html index f4761fc7..14e83c28 100644 --- a/docs/simple-api/functions_0x71.html +++ b/docs/simple-api/functions_0x71.html @@ -93,7 +93,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x72.html b/docs/simple-api/functions_0x72.html index 7433ee81..5e12c578 100644 --- a/docs/simple-api/functions_0x72.html +++ b/docs/simple-api/functions_0x72.html @@ -209,7 +209,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x73.html b/docs/simple-api/functions_0x73.html index c234e4ff..9630a75c 100644 --- a/docs/simple-api/functions_0x73.html +++ b/docs/simple-api/functions_0x73.html @@ -501,7 +501,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x74.html b/docs/simple-api/functions_0x74.html index f8f3fbf7..ba3cc356 100644 --- a/docs/simple-api/functions_0x74.html +++ b/docs/simple-api/functions_0x74.html @@ -170,7 +170,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x75.html b/docs/simple-api/functions_0x75.html index a1428b4b..e0e26dff 100644 --- a/docs/simple-api/functions_0x75.html +++ b/docs/simple-api/functions_0x75.html @@ -133,7 +133,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x76.html b/docs/simple-api/functions_0x76.html index d6d509de..3eaae68a 100644 --- a/docs/simple-api/functions_0x76.html +++ b/docs/simple-api/functions_0x76.html @@ -111,7 +111,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x77.html b/docs/simple-api/functions_0x77.html index bbcce0a7..c0663575 100644 --- a/docs/simple-api/functions_0x77.html +++ b/docs/simple-api/functions_0x77.html @@ -90,7 +90,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x78.html b/docs/simple-api/functions_0x78.html index e3d3917e..7d31298c 100644 --- a/docs/simple-api/functions_0x78.html +++ b/docs/simple-api/functions_0x78.html @@ -147,7 +147,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x79.html b/docs/simple-api/functions_0x79.html index 3a468a7e..a1d1e253 100644 --- a/docs/simple-api/functions_0x79.html +++ b/docs/simple-api/functions_0x79.html @@ -78,7 +78,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_0x7e.html b/docs/simple-api/functions_0x7e.html index 8140fa02..e19007aa 100644 --- a/docs/simple-api/functions_0x7e.html +++ b/docs/simple-api/functions_0x7e.html @@ -285,7 +285,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_enum.html b/docs/simple-api/functions_enum.html index eb641859..7057c533 100644 --- a/docs/simple-api/functions_enum.html +++ b/docs/simple-api/functions_enum.html @@ -94,7 +94,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_eval.html b/docs/simple-api/functions_eval.html index edace16f..75c62060 100644 --- a/docs/simple-api/functions_eval.html +++ b/docs/simple-api/functions_eval.html @@ -610,7 +610,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func.html b/docs/simple-api/functions_func.html index 5559b063..aff5b4a7 100644 --- a/docs/simple-api/functions_func.html +++ b/docs/simple-api/functions_func.html @@ -370,7 +370,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x62.html b/docs/simple-api/functions_func_0x62.html index fb54fc66..7bd284d8 100644 --- a/docs/simple-api/functions_func_0x62.html +++ b/docs/simple-api/functions_func_0x62.html @@ -85,7 +85,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x63.html b/docs/simple-api/functions_func_0x63.html index 84a416fd..f528cd48 100644 --- a/docs/simple-api/functions_func_0x63.html +++ b/docs/simple-api/functions_func_0x63.html @@ -408,7 +408,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x64.html b/docs/simple-api/functions_func_0x64.html index 9f1538af..65a59c71 100644 --- a/docs/simple-api/functions_func_0x64.html +++ b/docs/simple-api/functions_func_0x64.html @@ -164,7 +164,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x65.html b/docs/simple-api/functions_func_0x65.html index cdd50539..a4d69871 100644 --- a/docs/simple-api/functions_func_0x65.html +++ b/docs/simple-api/functions_func_0x65.html @@ -159,7 +159,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x66.html b/docs/simple-api/functions_func_0x66.html index 726693ec..e0762860 100644 --- a/docs/simple-api/functions_func_0x66.html +++ b/docs/simple-api/functions_func_0x66.html @@ -105,7 +105,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x67.html b/docs/simple-api/functions_func_0x67.html index e2082cd7..b0fc9bf6 100644 --- a/docs/simple-api/functions_func_0x67.html +++ b/docs/simple-api/functions_func_0x67.html @@ -770,7 +770,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x68.html b/docs/simple-api/functions_func_0x68.html index 6989cdea..a59d81d1 100644 --- a/docs/simple-api/functions_func_0x68.html +++ b/docs/simple-api/functions_func_0x68.html @@ -90,7 +90,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x69.html b/docs/simple-api/functions_func_0x69.html index a0ae2ab4..b5227dd9 100644 --- a/docs/simple-api/functions_func_0x69.html +++ b/docs/simple-api/functions_func_0x69.html @@ -257,7 +257,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x6a.html b/docs/simple-api/functions_func_0x6a.html index 256ad8ba..9f4e1820 100644 --- a/docs/simple-api/functions_func_0x6a.html +++ b/docs/simple-api/functions_func_0x6a.html @@ -73,7 +73,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x6c.html b/docs/simple-api/functions_func_0x6c.html index 22c75e53..3f271650 100644 --- a/docs/simple-api/functions_func_0x6c.html +++ b/docs/simple-api/functions_func_0x6c.html @@ -118,7 +118,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x6d.html b/docs/simple-api/functions_func_0x6d.html index 2da9702b..22767700 100644 --- a/docs/simple-api/functions_func_0x6d.html +++ b/docs/simple-api/functions_func_0x6d.html @@ -119,7 +119,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x6e.html b/docs/simple-api/functions_func_0x6e.html index 9efe8917..e7fce98d 100644 --- a/docs/simple-api/functions_func_0x6e.html +++ b/docs/simple-api/functions_func_0x6e.html @@ -97,7 +97,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x6f.html b/docs/simple-api/functions_func_0x6f.html index 4d691d54..3832da67 100644 --- a/docs/simple-api/functions_func_0x6f.html +++ b/docs/simple-api/functions_func_0x6f.html @@ -153,7 +153,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x70.html b/docs/simple-api/functions_func_0x70.html index 1a2a47e3..470cb46d 100644 --- a/docs/simple-api/functions_func_0x70.html +++ b/docs/simple-api/functions_func_0x70.html @@ -125,7 +125,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x71.html b/docs/simple-api/functions_func_0x71.html index b31bef7c..1ac1a67b 100644 --- a/docs/simple-api/functions_func_0x71.html +++ b/docs/simple-api/functions_func_0x71.html @@ -82,7 +82,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x72.html b/docs/simple-api/functions_func_0x72.html index e6cd1486..03ce6983 100644 --- a/docs/simple-api/functions_func_0x72.html +++ b/docs/simple-api/functions_func_0x72.html @@ -195,7 +195,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x73.html b/docs/simple-api/functions_func_0x73.html index a2eb1ea7..ab5cc90a 100644 --- a/docs/simple-api/functions_func_0x73.html +++ b/docs/simple-api/functions_func_0x73.html @@ -451,7 +451,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x74.html b/docs/simple-api/functions_func_0x74.html index a4a965ee..9051fec7 100644 --- a/docs/simple-api/functions_func_0x74.html +++ b/docs/simple-api/functions_func_0x74.html @@ -133,7 +133,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x75.html b/docs/simple-api/functions_func_0x75.html index 37718aab..7a1bae52 100644 --- a/docs/simple-api/functions_func_0x75.html +++ b/docs/simple-api/functions_func_0x75.html @@ -88,7 +88,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x76.html b/docs/simple-api/functions_func_0x76.html index e2a0ad3a..19f39af6 100644 --- a/docs/simple-api/functions_func_0x76.html +++ b/docs/simple-api/functions_func_0x76.html @@ -82,7 +82,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x77.html b/docs/simple-api/functions_func_0x77.html index 114219ab..c7b8dc94 100644 --- a/docs/simple-api/functions_func_0x77.html +++ b/docs/simple-api/functions_func_0x77.html @@ -88,7 +88,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x78.html b/docs/simple-api/functions_func_0x78.html index 8fb142f4..e9f28df9 100644 --- a/docs/simple-api/functions_func_0x78.html +++ b/docs/simple-api/functions_func_0x78.html @@ -97,7 +97,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_func_0x7e.html b/docs/simple-api/functions_func_0x7e.html index c6dbf390..18312c3d 100644 --- a/docs/simple-api/functions_func_0x7e.html +++ b/docs/simple-api/functions_func_0x7e.html @@ -283,7 +283,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_rela.html b/docs/simple-api/functions_rela.html index cd53948e..1186a526 100644 --- a/docs/simple-api/functions_rela.html +++ b/docs/simple-api/functions_rela.html @@ -43,7 +43,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_type.html b/docs/simple-api/functions_type.html index 65996708..03f13c9f 100644 --- a/docs/simple-api/functions_type.html +++ b/docs/simple-api/functions_type.html @@ -162,7 +162,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/functions_vars.html b/docs/simple-api/functions_vars.html index c8d3ee1d..a6e20608 100644 --- a/docs/simple-api/functions_vars.html +++ b/docs/simple-api/functions_vars.html @@ -467,7 +467,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/globals.html b/docs/simple-api/globals.html index 8d632e75..0070d718 100644 --- a/docs/simple-api/globals.html +++ b/docs/simple-api/globals.html @@ -224,7 +224,7 @@ Here is a list of all file members with links to the files they belong to: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/globals_defs.html b/docs/simple-api/globals_defs.html index 1ee6c525..3d35cdb5 100644 --- a/docs/simple-api/globals_defs.html +++ b/docs/simple-api/globals_defs.html @@ -113,7 +113,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/globals_func.html b/docs/simple-api/globals_func.html index 9298d001..2843f6bf 100644 --- a/docs/simple-api/globals_func.html +++ b/docs/simple-api/globals_func.html @@ -56,7 +56,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/globals_type.html b/docs/simple-api/globals_type.html index 922477ed..a8bcee8b 100644 --- a/docs/simple-api/globals_type.html +++ b/docs/simple-api/globals_type.html @@ -68,7 +68,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/graph_legend.html b/docs/simple-api/graph_legend.html index 8fa59cf6..db0b40bc 100644 --- a/docs/simple-api/graph_legend.html +++ b/docs/simple-api/graph_legend.html @@ -83,7 +83,7 @@ A purple dashed arrow is used if a class is contained or used by another class. A yellow dashed arrow denotes a relation between a template instance and the template class it was instantiated from. The arrow is labeled with the template parameters of the instance. -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/hierarchy.html b/docs/simple-api/hierarchy.html index ed21d880..abdeef9d 100644 --- a/docs/simple-api/hierarchy.html +++ b/docs/simple-api/hierarchy.html @@ -190,7 +190,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically: -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/index.html b/docs/simple-api/index.html index efadf666..e3b48400 100644 --- a/docs/simple-api/index.html +++ b/docs/simple-api/index.html @@ -18,8 +18,8 @@
    -

    XQilla Simple API Documentation

    2.3.2

    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +

    XQilla Simple API Documentation

    2.3.1

    +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/inherits.html b/docs/simple-api/inherits.html index 856357f9..51e86fc9 100644 --- a/docs/simple-api/inherits.html +++ b/docs/simple-api/inherits.html @@ -184,7 +184,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/namespaceCompileDelayedModule.html b/docs/simple-api/namespaceCompileDelayedModule.html index 82a37a35..4950e03a 100644 --- a/docs/simple-api/namespaceCompileDelayedModule.html +++ b/docs/simple-api/namespaceCompileDelayedModule.html @@ -48,7 +48,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/namespacemembers.html b/docs/simple-api/namespacemembers.html index e9b8c85c..c6f001e0 100644 --- a/docs/simple-api/namespacemembers.html +++ b/docs/simple-api/namespacemembers.html @@ -39,7 +39,7 @@ Here is a list of all namespace members with links to the namespace documentatio -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/namespacemembers_func.html b/docs/simple-api/namespacemembers_func.html index 818af8e3..bed57c6e 100644 --- a/docs/simple-api/namespacemembers_func.html +++ b/docs/simple-api/namespacemembers_func.html @@ -39,7 +39,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/namespaces.html b/docs/simple-api/namespaces.html index a0c117da..6ed787a4 100644 --- a/docs/simple-api/namespaces.html +++ b/docs/simple-api/namespaces.html @@ -29,7 +29,7 @@ xercesc -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/namespacexercesc.html b/docs/simple-api/namespacexercesc.html index eb1feafc..2612a672 100644 --- a/docs/simple-api/namespacexercesc.html +++ b/docs/simple-api/namespacexercesc.html @@ -90,7 +90,7 @@ -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/simple-basic_8cpp-example.html b/docs/simple-api/simple-basic_8cpp-example.html index 3ef33837..53177445 100644 --- a/docs/simple-api/simple-basic_8cpp-example.html +++ b/docs/simple-api/simple-basic_8cpp-example.html @@ -45,7 +45,7 @@ return 0; } -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/simple-context-item_8cpp-example.html b/docs/simple-api/simple-context-item_8cpp-example.html index 2f90e5de..56d7c28e 100644 --- a/docs/simple-api/simple-context-item_8cpp-example.html +++ b/docs/simple-api/simple-context-item_8cpp-example.html @@ -54,7 +54,7 @@ return 0; } -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structBaseInteractiveDebugger_1_1BreakPoint-members.html b/docs/simple-api/structBaseInteractiveDebugger_1_1BreakPoint-members.html index 8e8872f3..eb073bc3 100644 --- a/docs/simple-api/structBaseInteractiveDebugger_1_1BreakPoint-members.html +++ b/docs/simple-api/structBaseInteractiveDebugger_1_1BreakPoint-members.html @@ -34,7 +34,7 @@ lineBaseInteractiveDebugger::BreakPoint temporaryBaseInteractiveDebugger::BreakPoint -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structBaseInteractiveDebugger_1_1BreakPoint.html b/docs/simple-api/structBaseInteractiveDebugger_1_1BreakPoint.html index 3de38945..f2193792 100644 --- a/docs/simple-api/structBaseInteractiveDebugger_1_1BreakPoint.html +++ b/docs/simple-api/structBaseInteractiveDebugger_1_1BreakPoint.html @@ -152,7 +152,7 @@
  • InteractiveDebugger.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structBaseInteractiveDebugger_1_1Continue.html b/docs/simple-api/structBaseInteractiveDebugger_1_1Continue.html index 5bf7b07c..dbe1c3c7 100644 --- a/docs/simple-api/structBaseInteractiveDebugger_1_1Continue.html +++ b/docs/simple-api/structBaseInteractiveDebugger_1_1Continue.html @@ -36,7 +36,7 @@
  • InteractiveDebugger.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structBaseInteractiveDebugger_1_1Quit.html b/docs/simple-api/structBaseInteractiveDebugger_1_1Quit.html index 06590f2d..dec08fa7 100644 --- a/docs/simple-api/structBaseInteractiveDebugger_1_1Quit.html +++ b/docs/simple-api/structBaseInteractiveDebugger_1_1Quit.html @@ -36,7 +36,7 @@
  • InteractiveDebugger.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structBaseInteractiveDebugger_1_1Run.html b/docs/simple-api/structBaseInteractiveDebugger_1_1Run.html index ff1ebb3d..d7f5fa0f 100644 --- a/docs/simple-api/structBaseInteractiveDebugger_1_1Run.html +++ b/docs/simple-api/structBaseInteractiveDebugger_1_1Run.html @@ -36,7 +36,7 @@
  • InteractiveDebugger.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structBoolResult-members.html b/docs/simple-api/structBoolResult-members.html index a3a08962..63fedf91 100644 --- a/docs/simple-api/structBoolResult-members.html +++ b/docs/simple-api/structBoolResult-members.html @@ -35,7 +35,7 @@ operator==(BoolResult o) const BoolResult [inline] TrueBoolResult [static] -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structBoolResult.html b/docs/simple-api/structBoolResult.html index 6109d7d2..93b2b1cf 100644 --- a/docs/simple-api/structBoolResult.html +++ b/docs/simple-api/structBoolResult.html @@ -158,7 +158,7 @@
  • ATBooleanOrDerived.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structQueryPathTreeFilter_1_1StackEntry-members.html b/docs/simple-api/structQueryPathTreeFilter_1_1StackEntry-members.html index f5e1835c..80a32042 100644 --- a/docs/simple-api/structQueryPathTreeFilter_1_1StackEntry-members.html +++ b/docs/simple-api/structQueryPathTreeFilter_1_1StackEntry-members.html @@ -38,7 +38,7 @@ StackEntry()QueryPathTreeFilter::StackEntry [inline] uriQueryPathTreeFilter::StackEntry -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structQueryPathTreeFilter_1_1StackEntry.html b/docs/simple-api/structQueryPathTreeFilter_1_1StackEntry.html index 485cf643..6081b75d 100644 --- a/docs/simple-api/structQueryPathTreeFilter_1_1StackEntry.html +++ b/docs/simple-api/structQueryPathTreeFilter_1_1StackEntry.html @@ -197,7 +197,7 @@
  • QueryPathTreeFilter.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structStaticType_1_1TypeMatch-members.html b/docs/simple-api/structStaticType_1_1TypeMatch-members.html index 87f902b0..2895d1b0 100644 --- a/docs/simple-api/structStaticType_1_1TypeMatch-members.html +++ b/docs/simple-api/structStaticType_1_1TypeMatch-members.html @@ -30,7 +30,7 @@ cardinalityStaticType::TypeMatch typeStaticType::TypeMatch -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structStaticType_1_1TypeMatch.html b/docs/simple-api/structStaticType_1_1TypeMatch.html index de164ffe..028acb80 100644 --- a/docs/simple-api/structStaticType_1_1TypeMatch.html +++ b/docs/simple-api/structStaticType_1_1TypeMatch.html @@ -68,7 +68,7 @@
  • StaticType.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structXQillaAllocator_1_1rebind-members.html b/docs/simple-api/structXQillaAllocator_1_1rebind-members.html index 64bc5970..4f78f8b1 100644 --- a/docs/simple-api/structXQillaAllocator_1_1rebind-members.html +++ b/docs/simple-api/structXQillaAllocator_1_1rebind-members.html @@ -29,7 +29,7 @@

    XQillaAllocator< _Tp >::rebind< _Tp1 > Member List

    This is the complete list of members for XQillaAllocator< _Tp >::rebind< _Tp1 >, including all inherited members.
    other typedefXQillaAllocator< _Tp >::rebind< _Tp1 >
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/structXQillaAllocator_1_1rebind.html b/docs/simple-api/structXQillaAllocator_1_1rebind.html index e5397f7f..bc7f8e80 100644 --- a/docs/simple-api/structXQillaAllocator_1_1rebind.html +++ b/docs/simple-api/structXQillaAllocator_1_1rebind.html @@ -62,7 +62,7 @@ template<class _Tp1 >
  • XPath2MemoryManager.hpp
  • -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/xqilla-simple_8hpp.html b/docs/simple-api/xqilla-simple_8hpp.html index a30d1763..2a32d650 100644 --- a/docs/simple-api/xqilla-simple_8hpp.html +++ b/docs/simple-api/xqilla-simple_8hpp.html @@ -53,7 +53,7 @@ Include dependency graph for xqilla-simple.hpp:
    -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/simple-api/xqilla-simple_8hpp_source.html b/docs/simple-api/xqilla-simple_8hpp_source.html index 72e90f27..15f15854 100644 --- a/docs/simple-api/xqilla-simple_8hpp_source.html +++ b/docs/simple-api/xqilla-simple_8hpp_source.html @@ -59,7 +59,7 @@ 00035 #include <xqilla/context/URIResolver.hpp> 00036 #include <xqilla/runtime/Sequence.hpp> -
    Generated on 8 Jul 2015 for XQilla Simple API by  +
    Generated on 18 May 2015 for XQilla Simple API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/annotated.html b/docs/xqc-api/annotated.html index d72f9d92..09691036 100644 --- a/docs/xqc-api/annotated.html +++ b/docs/xqc-api/annotated.html @@ -34,7 +34,7 @@ XQC_StaticContext_sThe XQC_StaticContext struct provides a way to specify values for the static context of the query to be prepared -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/classes.html b/docs/xqc-api/classes.html index d06fe778..f6afb114 100644 --- a/docs/xqc-api/classes.html +++ b/docs/xqc-api/classes.html @@ -29,7 +29,7 @@
      X  
    XQC_Expression_s   XQC_Sequence_s   XQC_DynamicContext_s   XQC_Implementation_s   XQC_StaticContext_s   XQC_ErrorHandler_s   XQC_InputStream_s    -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/examples.html b/docs/xqc-api/examples.html index 9c60e23b..9d4b2bfb 100644 --- a/docs/xqc-api/examples.html +++ b/docs/xqc-api/examples.html @@ -25,7 +25,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/files.html b/docs/xqc-api/files.html index b71dc00c..7d8cf840 100644 --- a/docs/xqc-api/files.html +++ b/docs/xqc-api/files.html @@ -29,7 +29,7 @@ xqilla-xqc.h [code] -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/functions.html b/docs/xqc-api/functions.html index 2db553c2..dbfae935 100644 --- a/docs/xqc-api/functions.html +++ b/docs/xqc-api/functions.html @@ -273,7 +273,7 @@ Here is a list of all class members with links to the classes they belong to: -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/functions_vars.html b/docs/xqc-api/functions_vars.html index 607ead1a..912cb57c 100644 --- a/docs/xqc-api/functions_vars.html +++ b/docs/xqc-api/functions_vars.html @@ -273,7 +273,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/globals.html b/docs/xqc-api/globals.html index 08bdcf4f..1c95f587 100644 --- a/docs/xqc-api/globals.html +++ b/docs/xqc-api/globals.html @@ -277,7 +277,7 @@ Here is a list of all file members with links to the files they belong to: -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/globals_defs.html b/docs/xqc-api/globals_defs.html index 8130318d..87c0c58a 100644 --- a/docs/xqc-api/globals_defs.html +++ b/docs/xqc-api/globals_defs.html @@ -40,7 +40,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/globals_enum.html b/docs/xqc-api/globals_enum.html index 0f6656ea..a92b7e49 100644 --- a/docs/xqc-api/globals_enum.html +++ b/docs/xqc-api/globals_enum.html @@ -64,7 +64,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/globals_eval.html b/docs/xqc-api/globals_eval.html index a215abd4..886ee812 100644 --- a/docs/xqc-api/globals_eval.html +++ b/docs/xqc-api/globals_eval.html @@ -218,7 +218,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/globals_func.html b/docs/xqc-api/globals_func.html index a24a34b0..85fec1bb 100644 --- a/docs/xqc-api/globals_func.html +++ b/docs/xqc-api/globals_func.html @@ -40,7 +40,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/globals_type.html b/docs/xqc-api/globals_type.html index 79beeddd..fea0f56a 100644 --- a/docs/xqc-api/globals_type.html +++ b/docs/xqc-api/globals_type.html @@ -58,7 +58,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/index.html b/docs/xqc-api/index.html index f286e645..4e3d1fb3 100644 --- a/docs/xqc-api/index.html +++ b/docs/xqc-api/index.html @@ -18,8 +18,8 @@
    -

    XQilla XQC API Documentation

    2.3.2

    -
    Generated on 8 Jul 2015 for XQilla XQC API by  +

    XQilla XQC API Documentation

    2.3.1

    +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/pages.html b/docs/xqc-api/pages.html index da44dace..e7cd888e 100644 --- a/docs/xqc-api/pages.html +++ b/docs/xqc-api/pages.html @@ -23,7 +23,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__DynamicContext__s-members.html b/docs/xqc-api/structXQC__DynamicContext__s-members.html index b32bba66..32a76ecc 100644 --- a/docs/xqc-api/structXQC__DynamicContext__s-members.html +++ b/docs/xqc-api/structXQC__DynamicContext__s-members.html @@ -36,7 +36,7 @@ set_implicit_timezoneXQC_DynamicContext_s set_variableXQC_DynamicContext_s -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__DynamicContext__s.html b/docs/xqc-api/structXQC__DynamicContext__s.html index 62385a8b..3b1a0168 100644 --- a/docs/xqc-api/structXQC__DynamicContext__s.html +++ b/docs/xqc-api/structXQC__DynamicContext__s.html @@ -250,7 +250,7 @@
  • xqc.h
  • -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__ErrorHandler__s-members.html b/docs/xqc-api/structXQC__ErrorHandler__s-members.html index 51351d1d..20b7823c 100644 --- a/docs/xqc-api/structXQC__ErrorHandler__s-members.html +++ b/docs/xqc-api/structXQC__ErrorHandler__s-members.html @@ -28,7 +28,7 @@ errorXQC_ErrorHandler_s user_dataXQC_ErrorHandler_s -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__ErrorHandler__s.html b/docs/xqc-api/structXQC__ErrorHandler__s.html index b57b425f..0a1da19e 100644 --- a/docs/xqc-api/structXQC__ErrorHandler__s.html +++ b/docs/xqc-api/structXQC__ErrorHandler__s.html @@ -89,7 +89,7 @@
  • xqc.h
  • -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__Expression__s-members.html b/docs/xqc-api/structXQC__Expression__s-members.html index a82a6c39..5d152ce8 100644 --- a/docs/xqc-api/structXQC__Expression__s-members.html +++ b/docs/xqc-api/structXQC__Expression__s-members.html @@ -30,7 +30,7 @@ freeXQC_Expression_s get_interfaceXQC_Expression_s -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__Expression__s.html b/docs/xqc-api/structXQC__Expression__s.html index d70a8e45..0d61af36 100644 --- a/docs/xqc-api/structXQC__Expression__s.html +++ b/docs/xqc-api/structXQC__Expression__s.html @@ -164,7 +164,7 @@
  • xqc.h
  • -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__Implementation__s-members.html b/docs/xqc-api/structXQC__Implementation__s-members.html index 59cbf6f0..d1a833d0 100644 --- a/docs/xqc-api/structXQC__Implementation__s-members.html +++ b/docs/xqc-api/structXQC__Implementation__s-members.html @@ -40,7 +40,7 @@ prepare_fileXQC_Implementation_s prepare_streamXQC_Implementation_s -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__Implementation__s.html b/docs/xqc-api/structXQC__Implementation__s.html index 6f0c4f70..f11a7ec5 100644 --- a/docs/xqc-api/structXQC__Implementation__s.html +++ b/docs/xqc-api/structXQC__Implementation__s.html @@ -372,7 +372,7 @@
  • xqc.h
  • -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__InputStream__s-members.html b/docs/xqc-api/structXQC__InputStream__s-members.html index 6c306d08..c0d05904 100644 --- a/docs/xqc-api/structXQC__InputStream__s-members.html +++ b/docs/xqc-api/structXQC__InputStream__s-members.html @@ -30,7 +30,7 @@ readXQC_InputStream_s user_dataXQC_InputStream_s -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__InputStream__s.html b/docs/xqc-api/structXQC__InputStream__s.html index cea3a17c..5985bfba 100644 --- a/docs/xqc-api/structXQC__InputStream__s.html +++ b/docs/xqc-api/structXQC__InputStream__s.html @@ -127,7 +127,7 @@
  • xqc.h
  • -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__Sequence__s-members.html b/docs/xqc-api/structXQC__Sequence__s-members.html index 591cfa5a..8ed6d2f0 100644 --- a/docs/xqc-api/structXQC__Sequence__s-members.html +++ b/docs/xqc-api/structXQC__Sequence__s-members.html @@ -35,7 +35,7 @@ string_valueXQC_Sequence_s type_nameXQC_Sequence_s -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__Sequence__s.html b/docs/xqc-api/structXQC__Sequence__s.html index ae6cd11f..cea24346 100644 --- a/docs/xqc-api/structXQC__Sequence__s.html +++ b/docs/xqc-api/structXQC__Sequence__s.html @@ -318,7 +318,7 @@
  • xqc.h
  • -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__StaticContext__s-members.html b/docs/xqc-api/structXQC__StaticContext__s-members.html index be6b19ef..e0b3c120 100644 --- a/docs/xqc-api/structXQC__StaticContext__s-members.html +++ b/docs/xqc-api/structXQC__StaticContext__s-members.html @@ -51,7 +51,7 @@ set_ordering_modeXQC_StaticContext_s set_xpath_compatib_modeXQC_StaticContext_s -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/structXQC__StaticContext__s.html b/docs/xqc-api/structXQC__StaticContext__s.html index a5e6b825..b55a7ca9 100644 --- a/docs/xqc-api/structXQC__StaticContext__s.html +++ b/docs/xqc-api/structXQC__StaticContext__s.html @@ -772,7 +772,7 @@
  • xqc.h
  • -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/todo.html b/docs/xqc-api/todo.html index 4f1c729a..5d56ae6f 100644 --- a/docs/xqc-api/todo.html +++ b/docs/xqc-api/todo.html @@ -66,7 +66,7 @@
    Are there better enumeration names?
    -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/xqc-basic_8c-example.html b/docs/xqc-api/xqc-basic_8c-example.html index 27d12fed..70c69295 100644 --- a/docs/xqc-api/xqc-basic_8c-example.html +++ b/docs/xqc-api/xqc-basic_8c-example.html @@ -60,7 +60,7 @@ free_impl: return err; } -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/xqc-context-item_8c-example.html b/docs/xqc-api/xqc-context-item_8c-example.html index 089b088f..49907481 100644 --- a/docs/xqc-api/xqc-context-item_8c-example.html +++ b/docs/xqc-api/xqc-context-item_8c-example.html @@ -77,7 +77,7 @@ free_impl: return err; } -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/xqc_8h.html b/docs/xqc-api/xqc_8h.html index ecef3d52..044cd2ae 100644 --- a/docs/xqc-api/xqc_8h.html +++ b/docs/xqc-api/xqc_8h.html @@ -558,7 +558,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/xqc_8h_source.html b/docs/xqc-api/xqc_8h_source.html index 52057df4..b2643761 100644 --- a/docs/xqc-api/xqc_8h_source.html +++ b/docs/xqc-api/xqc_8h_source.html @@ -335,7 +335,7 @@ 00972 00973 #endif -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/xqilla-xqc_8h.html b/docs/xqc-api/xqilla-xqc_8h.html index 89910ae6..4836a9b6 100644 --- a/docs/xqc-api/xqilla-xqc_8h.html +++ b/docs/xqc-api/xqilla-xqc_8h.html @@ -55,7 +55,7 @@ -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/docs/xqc-api/xqilla-xqc_8h_source.html b/docs/xqc-api/xqilla-xqc_8h_source.html index fab603f4..d850ac09 100644 --- a/docs/xqc-api/xqilla-xqc_8h_source.html +++ b/docs/xqc-api/xqilla-xqc_8h_source.html @@ -58,7 +58,7 @@ 00049 00050 #endif -
    Generated on 8 Jul 2015 for XQilla XQC API by  +
    Generated on 18 May 2015 for XQilla XQC API by  doxygen 1.6.1
    diff --git a/src/mapm/mapmgues.c b/src/mapm/mapmgues.c index 4c56edac..02c37c9c 100644 --- a/src/mapm/mapmgues.c +++ b/src/mapm/mapmgues.c @@ -18,7 +18,7 @@ * This software is provided "as is" without express or implied warranty. * * THIS FILE HAS BEEN MODIFIED FROM THE OFFICIAL MAPM DISTRIBUTION BY - * 'XQilla project' on 2005/11/03. + * 'XQilla project' on 2005/11/03 and 2015/12/04. * THIS FILE IS ORIGINALLY FROM MAPM VERSION 4.6.1. */ @@ -90,7 +90,7 @@ else while (TRUE) { p--; - if (*p == '0' || *p == '.') + if (*p == '0' || *p == '.' || *p == ',') *p = ' '; else break; diff --git a/wintools/README b/wintools/README index 477484db..d682113b 100644 --- a/wintools/README +++ b/wintools/README @@ -1,8 +1,8 @@ This directory and the tools here are used to generate Windows project files for the main XQilla library and related projects. -Both VC7.1 and VC8 files are generated. The -latter can be opened using Visual Studio 2005 (8) and +VC9 files are generated. The +latter can be opened using Visual Studio 2008 (9) and later releases as well. The process: @@ -13,7 +13,7 @@ The process: 2. Run the script, s_win32, which calls the script s_projects to generate project files. These files - land in ../Win32Projects/{VC7.1,VC8}. s_projects requires that + land in ../Win32Projects/{VC9,VC10,VC11}. s_projects requires that the xqilla command line utility be in your PATH, because it uses XQuery and the input XML document (xqilla.template.xml) to generate the project files. diff --git a/wintools/genproject.xq b/wintools/genproject.xq index 3212c43f..689d8a9a 100644 --- a/wintools/genproject.xq +++ b/wintools/genproject.xq @@ -279,7 +279,6 @@ local:indent(6), {attribute{"AssemblerListingLocation"}{"./$(IntDir)/"}} {attribute{"ObjectFile"}{"./$(IntDir)/"}} {attribute{"WarningLevel"}{$warnLevel}} - {if (not($vsversion eq "8.00") and not($project/options/nowp64)) then attribute{"Detect64BitPortabilityProblems"}{"TRUE"} else ()} {attribute{"SuppressStartupBanner"}{"TRUE"}} {local:addDebugInformation($config)} {attribute{"CompileAs"}{"0"}} @@ -387,12 +386,14 @@ declare function local:getGuid($project) declare function local:getPlatforms($version) { if ($version eq "7.10") then ("Win32") - else ("Win32", "x64", "IA64") + else ("Win32", "x64") }; declare function local:getOutputName($project, $vsversion) { - let $vsname := if($vsversion = "7.10") then "VC7.1" else "VC8" + let $vsname := if($vsversion = "7.10") then "VC7.1" + else if($vsversion = "8.00") then "VC8" + else "VC9" return concat($outputPath, "/", $vsname, "/", $project/@name, ".vcproj") }; @@ -409,6 +410,7 @@ let $static := contains($project/@name,"static") let $proj := $project return if ($vsversion = "10.0") then () +else if ($vsversion = "11.0") then () else ( put( {local:indent(4)} {local:indent(4)} - {local:indent(4)} {local:indent(2)} {local:indent(2)} { diff --git a/wintools/lib_paths.sed b/wintools/lib_paths.sed index bd06baaf..20658f54 100644 --- a/wintools/lib_paths.sed +++ b/wintools/lib_paths.sed @@ -16,12 +16,12 @@ s!@XQILLA_LIB_BASE@!xqilla!g s!@XQILLA_VERSION_MAJOR@!2!g s!@XQILLA_VERSION_MINOR@!3!g -s!@XQILLA_VERSION_PATCH@!2!g +s!@XQILLA_VERSION_PATCH@!3!g # Xerces is assumed to be source (vs installation) -s!@XERCES_LIBHOME7@!@XERCES_WINHOME@/Build!g -s!@XERCES_LIBHOME8@!@XERCES_WINHOME@/Build!g +s!@XERCES_LIBHOME9@!@XERCES_WINHOME@/Build!g s!@XERCES_LIBHOME10@!@XERCES_WINHOME@/Build!g +s!@XERCES_LIBHOME11@!@XERCES_WINHOME@/Build!g # Xerces-c is in ../../../xerces-c-src s!@XERCES_WINHOME@!../../../@XERCES_NAME@!g s!@XERCES_NAME@!xerces-c-src!g @@ -29,8 +29,8 @@ s!@XERCES_STATIC_LIB@!xerces-c_static_@XERCES_VERSION_MAJOR@!g s!@XERCES_LIB@!xerces-c_@XERCES_VERSION_MAJOR@!g s!@XERCES_DLL@!xerces-c_@XERCES_VERSION_MAJOR@_@XERCES_VERSION_MINOR@!g -# Current Xerces version is 3.1.2 +# Current Xerces version is 3.1.3 s!@XERCES_VERSION_MAJOR@!3!g s!@XERCES_VERSION_MINOR@!1!g -s!@XERCES_VERSION_PATCH@!2!g +s!@XERCES_VERSION_PATCH@!3!g diff --git a/wintools/s_projects b/wintools/s_projects index da309ce5..8d638bdd 100755 --- a/wintools/s_projects +++ b/wintools/s_projects @@ -27,16 +27,16 @@ if [ ! -x "$XQILLA" ]; then fi echo XQILLA = $XQILLA -# generate the VC7.1 and VC8 project files -# generate VC10 filter information for xqilla project +# generate the VC9 project files +# generate VC10 and VC11 filter information for xqilla project $XQILLA -u genproject.xq -v projectFile "$CONFIG_OUTPUT" -v outputPath "../Win32Projects" $XQILLA -u xqilla.vs2010.xq -v projectFile "$CONFIG_OUTPUT" -v outputPath "../Win32Projects" $XQILLA -u xqilla.vs2010_filter.xq -v projectFile "$CONFIG_OUTPUT" -v outputPath "../Win32Projects" -# Post process the VC7.1 files to put the "Name" attribute first, -# since VC7.1 doesn't use a proper XML parser :-( +# Post process the VC9 files to put the "Name" attribute first, +# since VC9 doesn't use a proper XML parser :-( -for file in `ls ../Win32Projects/VC7.1/*.vcproj ../Win32Projects/VC8/*.vcproj` +for file in `ls ../Win32Projects/VC9/*.vcproj` do # This only works if the start elements are always on a single line. # @@ -47,7 +47,7 @@ sed -i -e 's/<\([^/>][^> ]*\)\([^>]*\) Name="\([^"]*\)"\([^>]*\)>/<\1 Name="\3"\ # element name value of "Name" attr done -for file in `ls ../Win32Projects/VC10/*.vcxproj ../Win32Projects/VC10/*.vcxproj.filters` +for file in `ls ../Win32Projects/VC10/*.vcxproj ../Win32Projects/VC10/*.vcxproj.filters ../Win32Projects/VC11/*.vcxproj ../Win32Projects/VC11/*.vcxproj.filters` do sed '2,$s/xmlns="http:\/\/schemas.microsoft.com\/developer\/msbuild\/2003"//' $file > temp sed '1 i\ diff --git a/wintools/xqilla.template.xml b/wintools/xqilla.template.xml index eab4c429..55c53d2a 100644 --- a/wintools/xqilla.template.xml +++ b/wintools/xqilla.template.xml @@ -11,13 +11,13 @@ * TBD: describe format in more detail --> - 7.10 - 8.00 + 9.00 10.0 + 11.0 ../../ - ../../build/windows/VC7.1/ - ../../build/windows/VC8/ + ../../build/windows/VC9/ ../../build/windows/VC10/ + ../../build/windows/VC11/ WIN32;_WINDOWS _DEBUG NDEBUG @@ -32,7 +32,7 @@ @XQILLA_LIB@ @XQILLA_STATIC_LIB@d @XQILLA_STATIC_LIB@ - + $(OutDir) @@ -52,32 +52,18 @@ @XERCES_LIB@ @XERCES_STATIC_LIB@d @XERCES_STATIC_LIB@ - + - @XERCES_LIBHOME7@/Win32/VC7.1/$(ConfigurationName) + @XERCES_LIBHOME9@/Win32/VC9/$(ConfigurationName) - @XERCES_LIBHOME7@/Win32/VC7.1/$(ConfigurationName) + @XERCES_LIBHOME9@/Win32/VC9/$(ConfigurationName) - @XERCES_LIBHOME7@/Win32/VC7.1/$(ConfigurationName) + @XERCES_LIBHOME9@/Win32/VC9/$(ConfigurationName) - @XERCES_LIBHOME7@/Win32/VC7.1/$(ConfigurationName) - - - - - @XERCES_LIBHOME8@/Win32/VC8/$(ConfigurationName) - - - @XERCES_LIBHOME8@/Win32/VC8/$(ConfigurationName) - - - @XERCES_LIBHOME8@/Win32/VC8/$(ConfigurationName) - - - @XERCES_LIBHOME8@/Win32/VC8/$(ConfigurationName) + @XERCES_LIBHOME9@/Win32/VC9/$(ConfigurationName) @@ -94,18 +80,32 @@ @XERCES_LIBHOME10@/Win32/VC10/$(ConfigurationName) - + - @XERCES_LIBHOME8@/Win64/VC8/$(ConfigurationName) + @XERCES_LIBHOME11@/Win32/VC11/$(ConfigurationName) - @XERCES_LIBHOME8@/Win64/VC8/$(ConfigurationName) + @XERCES_LIBHOME11@/Win32/VC11/$(ConfigurationName) - @XERCES_LIBHOME8@/Win64/VC8/$(ConfigurationName) + @XERCES_LIBHOME11@/Win32/VC11/$(ConfigurationName) - @XERCES_LIBHOME8@/Win64/VC8/$(ConfigurationName) + @XERCES_LIBHOME11@/Win32/VC11/$(ConfigurationName) + + + + + @XERCES_LIBHOME9@/Win64/VC9/$(ConfigurationName) + + + @XERCES_LIBHOME9@/Win64/VC9/$(ConfigurationName) + + + @XERCES_LIBHOME9@/Win64/VC9/$(ConfigurationName) + + + @XERCES_LIBHOME9@/Win64/VC9/$(ConfigurationName) @@ -122,6 +122,20 @@ @XERCES_LIBHOME10@/Win64/VC10/$(ConfigurationName) + + + @XERCES_LIBHOME11@/Win64/VC11/$(ConfigurationName) + + + @XERCES_LIBHOME11@/Win64/VC11/$(ConfigurationName) + + + @XERCES_LIBHOME11@/Win64/VC11/$(ConfigurationName) + + + @XERCES_LIBHOME11@/Win64/VC11/$(ConfigurationName) + + library diff --git a/wintools/xqilla.vs2010.xq b/wintools/xqilla.vs2010.xq index 2688776e..3e076fa0 100644 --- a/wintools/xqilla.vs2010.xq +++ b/wintools/xqilla.vs2010.xq @@ -14,12 +14,10 @@ declare variable $releaseOptLevel := "MaxSpeed"; declare variable $warnLevel := "Level3"; declare variable $debugInfo := "ProgramDatabase"; declare variable $sourcePath := doc($projectFile)/projects/variable[@name="sourcePath"]; -declare variable $outputBase := doc($projectFile)/projects/variable[@name="outputBase.10.0"]; declare variable $dllType := "dll"; declare variable $appType := "Application"; declare variable $libprop := "library.props"; - declare function local:genImportProperty($libprop) { local:indent(2), @@ -35,7 +33,7 @@ declare function local:indent($n) declare function local:getPlatforms($version) { if ($version eq "7.10") then ("Win32") - else ("Win32", "x64", "IA64") + else ("Win32", "x64") }; declare function local:getGuid($project) @@ -72,11 +70,18 @@ declare function local:configurationType($project, $config) else error(QName("","xqilla"),"configurationType:unkown project type") }; +declare function local:getPlatformToolset($vsversion) +{ + if ($vsversion = "10.0") then "v100" + else "v110" +}; + declare function local:generateConfigurations($project, $vsversion) { for $platform in local:getPlatforms($vsversion) return for $config in local:getConfiguration($project) - let $configType := local:configurationType($project,$config) + let $configType := local:configurationType($project,$config) + let $platformToolset := local:getPlatformToolset($vsversion) return (local:indent(2),{$configType} {local:indent(4)}false {local:indent(4)}MultiByte + {local:indent(4)}{$platformToolset} {local:indent(2)} ) }; @@ -122,9 +128,10 @@ declare function local:windowsPath($path) as xs:string translate($path,"/","\\") }; -declare function local:generateOutDir($config) +declare function local:generateOutDir($config, $vsversion) { - local:windowsPath(concat($outputBase, "$(Platform)", "/", $config, "/")) + let $outputBase := doc($projectFile)/projects/variable[@name=concat("outputBase.", $vsversion)] + return local:windowsPath(concat($outputBase, "$(Platform)", "/", $config, "/")) }; (:becaues zlib has different 32 and 64 bits platform libraries, so use another getLibName:) @@ -171,7 +178,7 @@ declare function local:genDynamicMacros($project, $vsversion) for $config in local:getConfiguration($project) return (local:indent(4), - {local:generateOutDir($config)}, + {local:generateOutDir($config, $vsversion)}, local:indent(4), {concat("./$(OutDir)",$project/@name,"\")}, @@ -513,9 +520,13 @@ declare function local:getOutputName($project, $vsversion) { let $vsname := if($vsversion = "7.10") then "VC7.1" else if($vsversion = "8.00") then "VC8" - else "VC10" - let $postfix := if($vsversion = "10.0") then ".vcxproj" - else ".vcproj" + else if($vsversion = "9.00") then "VC9" + else if($vsversion = "10.0") then "VC10" + else "VC11" + let $postfix := if($vsversion = "7.10") then ".vcproj" + else if($vsversion = "8.00") then ".vcproj" + else if($vsversion = "9.00") then ".vcproj" + else ".vcxproj" return concat($outputPath, "/", $vsname, "/", $project/@name, $postfix) }; diff --git a/wintools/xqilla.vs2010_filter.xq b/wintools/xqilla.vs2010_filter.xq index 2c5bc3ec..c2c7c3de 100644 --- a/wintools/xqilla.vs2010_filter.xq +++ b/wintools/xqilla.vs2010_filter.xq @@ -1,7 +1,6 @@ declare variable $projectFile external; declare variable $outputPath external; declare variable $msbversion := "4.0"; -declare variable $vsversion := "VC10.0"; declare variable $sourcePath := doc($projectFile)/projects/variable[@name="sourcePath"]; declare function local:indent($n) @@ -19,19 +18,27 @@ declare function local:getFilteredProjects() doc($projectFile)/projects/project[@name="xqilla"] }; +declare function local:getVsversion() +{ + (: Only be suitable when version >= 10.0 :) + distinct-values(doc($projectFile)//visualstudioversion[fn:number(.) >= 10.0]) +}; + declare function local:getPlatforms($version) { if ($version eq "7.10") then ("Win32") - else ("Win32", "x64", "IA64") + else ("Win32", "x64") }; declare function local:getOutputName($project, $vsversion) { - let $vsname := if($vsversion = "VC7.10") then "VC7.1" - else if($vsversion = "VC8.00") then "VC8" - else "VC10" - let $postfix := if($vsversion = "VC10.0") then ".vcxproj.filters" - else ".vcproj.filters" + let $vsname := if($vsversion = "7.10") then "VC7.1" + else if($vsversion = "8.00") then "VC8" + else if($vsversion = "10.0") then "VC10" + else "VC11" + let $postfix := if($vsversion = "7.10") then ".vcproj.filters" + else if($vsversion = "8.00") then ".vcproj.filters" + else ".vcxproj.filters" return concat($outputPath, "/", $vsname, "/", $project/@name, $postfix) }; @@ -78,7 +85,9 @@ declare function local:generateSrcFiles($project) declare function local:generateRCFiles($project) { - for $file in $project/files//file return + for $file in $project/files//file + let $vsversion := local:getVsversion() + return if (ends-with($file/@name,".rc")) then (local:indent(2), {local:indent(4)} @@ -105,7 +114,7 @@ declare function local:genFiles($project){ local:generateRCFiles($project) }; - +for $vsversion in local:getVsversion() for $project in local:getFilteredProjects() return put(