This commit is contained in:
King_DuckZ 2020-02-17 22:12:51 +01:00
parent 9b71614762
commit 8c48174b5b
1642 changed files with 28571 additions and 18190 deletions

View file

@ -1,5 +1,26 @@
XQilla: an XQuery and XPath 2.0 library and command line interpreter.
version 2.0.0 (2007.12.12):
* Changed the license for XQilla to the Apache License v2, a more
permissive open-source licence.
* Implemented document projection, an optimisation technique that prunes
sub-trees of documents not needed for the query at parse time. This is
enabled by default.
* Added a new extension function xqilla:parse-xml() which takes a string
and parses it as an XML document.
* Added optional support for using the FAXPP XML parser instead of the
Xerces-C parser.
* Added a command line option to the "xqilla" utility for binding
external variables from the command line.
* Implemented better error messages for type errors.
* Modified the embedded MAPM library so we are now using it under the
terms of the MIT licence.
* Fixed miscellaneous bugs in the XQuery Update implementation.
* Fixed a bug with the algorithm to add and subtract an
xs:dayTimeDuration to or from an xs:date.
* Fixed a bug in XercesNodeImpl which caused a segfault if the node was
created as a value of a global variable in another module.
version 1.1.0 (2007.08.31):
* Added support for XQuery Update (Last Call Working Draft, 28 August
2007).

208
LICENSE
View file

@ -1,6 +1,202 @@
The XQilla software is a combination of what was previously two
separate libraries -- Pathan and and XQuery library. Each
has its own license file in this directory. See these files
for license information for XQilla:
Pathan -- LICENSE.pathan.txt
XQuery -- LICENSE.xquery.txt
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View file

@ -1,34 +0,0 @@
The DecisionSoft Open Source Licence
This licence is based on the BSD Licence template.
Copyright (c) 2001, DecisionSoft Limited
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of DecisionSoft Limited nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE

View file

@ -1,73 +0,0 @@
The following is the license that applies to this copy of the Berkeley DB XML
XQuery software. For a license to use the Berkeley DB XML software under conditions
other than those described here, or to purchase support for this software,
please contact Oracle at berkeleydb-info_us@oracle.com.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
/*
* Copyright (c) 2001,2006 Oracle. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Redistributions in any form must be accompanied by information on
* how to obtain complete source code for the DB software and any
* accompanying software that uses the DB software. The source code
* must either be included in the distribution or be available for no
* more than the cost of distribution plus a nominal fee, and must be
* freely redistributable under reasonable conditions. For an
* executable file, complete source code means the source code for all
* modules it contains. It does not include source code for modules or
* files that typically accompany the major components of the operating
* system on which the executable file runs.
*
* THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
* NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
/*
* Copyright (c) 2005,2006
* Progress Software Corporation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The end-user documentation included with the redistribution, if any,
* must include the following acknowledgment: "This product includes
* software developed by Progress Software Corporation." Alternately,
* this acknowledgment may appear in the software itself, if and wherever
* such third-party acknowledgments normally appear.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL PROGRESS SOFTWARE CORPORATION BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

View file

@ -1,18 +1,18 @@
AUTOMAKE_OPTIONS = foreign dist-zip
SUBDIRS = include
INCLUDES = -I$(top_srcdir)/include/ -I$(xerces_include) -I$(top_srcdir)/src/lexer/
LDFLAGS = -L$(xerces_lib) -R$(xerces_lib)
INCLUDES = -I$(top_srcdir)/include/ -I$(xerces_include) -I$(top_srcdir)/src/lexer/ $(faxpp_include)
LDFLAGS = -L$(xerces_lib) -R$(xerces_lib) $(faxpp_lib)
LDADD = libxqilla.la
bin_PROGRAMS = xqilla
noinst_PROGRAMS = basicXQillaUsage xqtsRunner xmarkRunner
noinst_PROGRAMS = xqtsRunner xmarkRunner simple-basic simple-context-item dom-basic dom-context-item dom-resolver
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 2:0:0 -no-undefined -lxerces-c
libxqilla_la_LDFLAGS = -version-info 3:0:0 -no-undefined -lxerces-c $(faxpp_library)
libxqilla_la_SOURCES = \
src/framework/ReferenceCounted.cpp \
@ -78,6 +78,7 @@ src/events/EventSerializer.cpp \
src/events/NoInheritFilter.cpp \
src/events/NoInheritFilter.hpp \
src/events/NSFixupFilter.cpp \
src/events/QueryPathTreeFilter.cpp \
src/fulltext/FTContains.cpp \
src/fulltext/FTWords.cpp \
src/fulltext/FTOr.cpp \
@ -133,6 +134,8 @@ src/exceptions/XQException.cpp \
src/exceptions/InvalidLexicalSpaceException.hpp \
src/exceptions/MiscException.hpp \
src/functions/ExternalFunction.cpp \
src/functions/XQillaFunction.cpp \
src/functions/FunctionParseXML.cpp \
src/functions/FuncFactory.cpp \
src/functions/FuncFactoryTemplate.hpp \
src/functions/FunctionLookup.cpp \
@ -368,6 +371,8 @@ src/schema/DocumentCacheImpl.cpp \
src/schema/SequenceType.cpp \
src/schema/AnyAtomicTypeDatatypeValidator.cpp \
src/schema/SchemaValidatorFilter.cpp \
src/schema/FaxppDocumentCacheImpl.hpp \
src/schema/FaxppDocumentCacheImpl.cpp \
src/runtime/ClosureResult.cpp \
src/runtime/EmptyResult.cpp \
src/runtime/LazySequenceResult.cpp \
@ -439,15 +444,23 @@ src/xerces/XercesSequenceBuilder.cpp \
src/xerces/XercesUpdateFactory.hpp \
src/xerces/XercesUpdateFactory.cpp \
src/xerces/XercesURIResolver.hpp \
src/xerces/XercesURIResolver.cpp
src/xerces/XercesURIResolver.cpp \
src/optimizer/Optimizer.cpp \
src/optimizer/ASTVisitor.cpp \
src/optimizer/QueryPathNode.cpp \
src/optimizer/QueryPathTreeGenerator.cpp
EXTRA_DIST = \
src/lexer/flex.skl \
src/lexer/XQLexer.l \
src/parser/XQParser.y \
src/parser/XQParser.y \
src/samples/dom-api/data.xml \
src/samples/dom-api/data.xsd \
src/samples/dom-api/foo.xml \
src/samples/simple-api/foo.xml \
LICENSE \
LICENSE.xquery.txt \
LICENSE.pathan.txt \
TODO \
ChangeLog \
docs/Doxyfile.simpleapi.in \
docs/Doxyfile.dom3api.in \
@ -456,51 +469,71 @@ docs/dom3_header.html \
docs/simple_header.html \
docs/simple-api \
docs/dom3-api \
Win32Projects/VC6/dom-basic.dsp \
Win32Projects/VC6/dom-context-item.dsp \
Win32Projects/VC6/dom-resolver.dsp \
Win32Projects/VC6/simple-basic.dsp \
Win32Projects/VC6/simple-context-item.dsp \
Win32Projects/VC6/xmarkRunner.dsp \
Win32Projects/VC6/xqilla.dsp \
Win32Projects/VC6/xqilla_cmd.dsp \
Win32Projects/VC6/basicXQillaUsage.dsp \
Win32Projects/VC6/xqtsRunner.dsp \
Win32Projects/VC6/XQilla.dsw \
Win32Projects/VC7.1/xqilla.vcproj \
Win32Projects/VC7.1/xqilla_static.vcproj \
Win32Projects/VC7.1/xqilla_cmd.vcproj \
Win32Projects/VC7.1/basicXQillaUsage.vcproj \
Win32Projects/VC7.1/xqilla_cmd_static.vcproj \
Win32Projects/VC7.1/xqtsRunner.vcproj \
Win32Projects/VC7.1/xmarkRunner.vcproj \
Win32Projects/VC7.1/simple-basic.vcproj \
Win32Projects/VC7.1/simple-context-item.vcproj \
Win32Projects/VC7.1/dom-basic.vcproj \
Win32Projects/VC7.1/dom-context-item.vcproj \
Win32Projects/VC7.1/dom-resolver.vcproj \
Win32Projects/VC7.1/XQilla.sln \
tests/xqts/xqts_testsuite/errors.xml \
wintools/app_dsp.src \
wintools/app_vcproj.src \
wintools/filter_dsp.end \
wintools/filter_dsp.start \
wintools/filter_vcproj.end \
wintools/filter_vcproj.start \
wintools/lib_paths.sed \
wintools/README \
wintools/srcfile_dsp.src \
wintools/srcfile_filt_vcproj.src \
wintools/srcfiles.in \
wintools/srcfile_vcproj.src \
wintools/s_win32 \
wintools/s_win32_common \
wintools/s_win32_dsp \
wintools/s_win32_vcproj \
wintools/xqilla.projects \
wintools/xqilla.template.xml \
wintools/s_projects \
wintools/genproject.template \
wintools/xqilla_cmd.dsp.src \
wintools/xqilla_cmd.vcproj.src \
wintools/xqilla_dsp.src \
wintools/xqilla_vcproj.src
wintools/xqilla_dsp.src
xqilla_SOURCES = \
src/samples/xqilla/xqilla-commandline.cpp
basicXQillaUsage_SOURCES = \
src/samples/basic/basicXQillaUsage.cpp
xqtsRunner_SOURCES = \
tests/xqts/runner.cpp
xmarkRunner_SOURCES = \
tests/xmark/xmark.cpp
simple_basic_SOURCES = \
src/samples/simple-api/simple-basic.cpp
simple_context_item_SOURCES = \
src/samples/simple-api/simple-context-item.cpp
dom_basic_SOURCES = \
src/samples/dom-api/dom-basic.cpp
dom_context_item_SOURCES = \
src/samples/dom-api/dom-context-item.cpp
dom_resolver_SOURCES = \
src/samples/dom-api/dom-resolver.cpp
LEXERFILE = $(top_srcdir)/src/lexer/XQLexer.cpp
LEXTEMPLATE = $(top_srcdir)/src/lexer/XQLexer.l
LEXSKEL = $(top_srcdir)/src/lexer/flex.skl

View file

@ -35,15 +35,17 @@ build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
bin_PROGRAMS = xqilla$(EXEEXT)
noinst_PROGRAMS = basicXQillaUsage$(EXEEXT) xqtsRunner$(EXEEXT) \
xmarkRunner$(EXEEXT)
noinst_PROGRAMS = xqtsRunner$(EXEEXT) xmarkRunner$(EXEEXT) \
simple-basic$(EXEEXT) simple-context-item$(EXEEXT) \
dom-basic$(EXEEXT) dom-context-item$(EXEEXT) \
dom-resolver$(EXEEXT)
subdir = .
DIST_COMMON = $(am__configure_deps) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(top_srcdir)/configure \
$(top_srcdir)/src/config/xqilla_config_unix.h.in ChangeLog \
autotools/config.guess autotools/config.sub autotools/depcomp \
autotools/install-sh autotools/ltmain.sh autotools/missing \
autotools/mkinstalldirs
TODO autotools/config.guess autotools/config.sub \
autotools/depcomp autotools/install-sh autotools/ltmain.sh \
autotools/missing autotools/mkinstalldirs
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.in
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
@ -83,22 +85,22 @@ am_libxqilla_la_OBJECTS = ReferenceCounted.lo BaseMemoryManager.lo \
XQReturn.lo ContextTuple.lo ForTuple.lo LetTuple.lo \
WhereTuple.lo OrderByTuple.lo ContentSequenceFilter.lo \
EventSerializer.lo NoInheritFilter.lo NSFixupFilter.lo \
FTContains.lo FTWords.lo FTOr.lo FTAnd.lo FTMildnot.lo \
FTUnaryNot.lo DefaultTokenizer.lo DefaultTokenStore.lo \
FTOrder.lo FTDistance.lo FTScope.lo FTContent.lo FTWindow.lo \
XQillaBuilderImpl.lo XQillaDocumentImpl.lo \
XQillaExpressionImpl.lo XQillaNSResolverImpl.lo \
XQillaXMLGrammarPoolImpl.lo XPathDocumentImpl.lo \
XPathNamespaceImpl.lo XPath2ResultImpl.lo \
QueryPathTreeFilter.lo FTContains.lo FTWords.lo FTOr.lo \
FTAnd.lo FTMildnot.lo FTUnaryNot.lo DefaultTokenizer.lo \
DefaultTokenStore.lo FTOrder.lo FTDistance.lo FTScope.lo \
FTContent.lo FTWindow.lo XQillaBuilderImpl.lo \
XQillaDocumentImpl.lo XQillaExpressionImpl.lo \
XQillaNSResolverImpl.lo XQillaXMLGrammarPoolImpl.lo \
XPathDocumentImpl.lo XPathNamespaceImpl.lo XPath2ResultImpl.lo \
XQillaImplementation.lo XPath2NodeSerializer.lo XQilla.lo \
XQQuery.lo UTF8Str.lo XMLChCompare.lo XStr.lo ContextUtils.lo \
DateUtils.lo NumUtils.lo XQillaPlatformUtils.lo PrintAST.lo \
XPath2NSUtils.lo XPath2Utils.lo UCANormalizer1.lo \
UCANormalizer2.lo UCANormalizer3.lo UCANormalizer4.lo \
UCANormalizer.lo XQillaException.lo XQException.lo \
ExternalFunction.lo FuncFactory.lo FunctionLookup.lo \
FunctionAbs.lo FunctionAvg.lo FunctionBaseURI.lo \
FunctionBoolean.lo FunctionCeiling.lo \
ExternalFunction.lo XQillaFunction.lo FunctionParseXML.lo \
FuncFactory.lo FunctionLookup.lo FunctionAbs.lo FunctionAvg.lo \
FunctionBaseURI.lo FunctionBoolean.lo FunctionCeiling.lo \
FunctionCodepointEqual.lo FunctionCodepointsToString.lo \
FunctionCollection.lo FunctionCompare.lo FunctionConcat.lo \
FunctionConstructor.lo FunctionContains.lo FunctionCount.lo \
@ -178,33 +180,51 @@ am_libxqilla_la_OBJECTS = ReferenceCounted.lo BaseMemoryManager.lo \
NotEquals.lo Or.lo OrderComparison.lo Plus.lo Range.lo \
UnaryMinus.lo Union.lo DocumentCacheImpl.lo SequenceType.lo \
AnyAtomicTypeDatatypeValidator.lo SchemaValidatorFilter.lo \
ClosureResult.lo EmptyResult.lo LazySequenceResult.lo \
ResultBuffer.lo ResultBufferImpl.lo Result.lo ResultImpl.lo \
SequenceResult.lo SingleResult.lo Sequence.lo FunctionPut.lo \
PendingUpdateList.lo UApplyUpdates.lo UDelete.lo URename.lo \
UReplace.lo UReplaceValueOf.lo UInsertAsFirst.lo \
UInsertAsLast.lo UInsertInto.lo UInsertAfter.lo \
UInsertBefore.lo UTransform.lo TestSuiteParser.lo \
TestSuiteResultListener.lo TestSuiteRunner.lo \
FastXDMUpdateFactory.lo FastXDMDocument.lo FastXDMNodeImpl.lo \
FastXDMConfiguration.lo FastXDMSequenceBuilder.lo \
AncestorAxis.lo AncestorOrSelfAxis.lo AttributeAxis.lo Axis.lo \
ChildAxis.lo DescendantAxis.lo DescendantOrSelfAxis.lo \
FollowingAxis.lo FollowingSiblingAxis.lo NamespaceAxis.lo \
ParentAxis.lo PrecedingAxis.lo PrecedingSiblingAxis.lo \
FaxppDocumentCacheImpl.lo ClosureResult.lo EmptyResult.lo \
LazySequenceResult.lo ResultBuffer.lo ResultBufferImpl.lo \
Result.lo ResultImpl.lo SequenceResult.lo SingleResult.lo \
Sequence.lo FunctionPut.lo PendingUpdateList.lo \
UApplyUpdates.lo UDelete.lo URename.lo UReplace.lo \
UReplaceValueOf.lo UInsertAsFirst.lo UInsertAsLast.lo \
UInsertInto.lo UInsertAfter.lo UInsertBefore.lo UTransform.lo \
TestSuiteParser.lo TestSuiteResultListener.lo \
TestSuiteRunner.lo FastXDMUpdateFactory.lo FastXDMDocument.lo \
FastXDMNodeImpl.lo FastXDMConfiguration.lo \
FastXDMSequenceBuilder.lo AncestorAxis.lo \
AncestorOrSelfAxis.lo AttributeAxis.lo Axis.lo ChildAxis.lo \
DescendantAxis.lo DescendantOrSelfAxis.lo FollowingAxis.lo \
FollowingSiblingAxis.lo NamespaceAxis.lo ParentAxis.lo \
PrecedingAxis.lo PrecedingSiblingAxis.lo \
XercesConfiguration.lo XercesNodeImpl.lo \
XercesSequenceBuilder.lo XercesUpdateFactory.lo \
XercesURIResolver.lo
XercesURIResolver.lo Optimizer.lo ASTVisitor.lo \
QueryPathNode.lo QueryPathTreeGenerator.lo
libxqilla_la_OBJECTS = $(am_libxqilla_la_OBJECTS)
libxqilla_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
$(CXXFLAGS) $(libxqilla_la_LDFLAGS) $(LDFLAGS) -o $@
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
am_basicXQillaUsage_OBJECTS = basicXQillaUsage.$(OBJEXT)
basicXQillaUsage_OBJECTS = $(am_basicXQillaUsage_OBJECTS)
basicXQillaUsage_LDADD = $(LDADD)
basicXQillaUsage_DEPENDENCIES = libxqilla.la
am_dom_basic_OBJECTS = dom-basic.$(OBJEXT)
dom_basic_OBJECTS = $(am_dom_basic_OBJECTS)
dom_basic_LDADD = $(LDADD)
dom_basic_DEPENDENCIES = libxqilla.la
am_dom_context_item_OBJECTS = dom-context-item.$(OBJEXT)
dom_context_item_OBJECTS = $(am_dom_context_item_OBJECTS)
dom_context_item_LDADD = $(LDADD)
dom_context_item_DEPENDENCIES = libxqilla.la
am_dom_resolver_OBJECTS = dom-resolver.$(OBJEXT)
dom_resolver_OBJECTS = $(am_dom_resolver_OBJECTS)
dom_resolver_LDADD = $(LDADD)
dom_resolver_DEPENDENCIES = libxqilla.la
am_simple_basic_OBJECTS = simple-basic.$(OBJEXT)
simple_basic_OBJECTS = $(am_simple_basic_OBJECTS)
simple_basic_LDADD = $(LDADD)
simple_basic_DEPENDENCIES = libxqilla.la
am_simple_context_item_OBJECTS = simple-context-item.$(OBJEXT)
simple_context_item_OBJECTS = $(am_simple_context_item_OBJECTS)
simple_context_item_LDADD = $(LDADD)
simple_context_item_DEPENDENCIES = libxqilla.la
am_xmarkRunner_OBJECTS = xmark.$(OBJEXT)
xmarkRunner_OBJECTS = $(am_xmarkRunner_OBJECTS)
xmarkRunner_LDADD = $(LDADD)
@ -238,9 +258,13 @@ CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
SOURCES = $(libxqilla_la_SOURCES) $(basicXQillaUsage_SOURCES) \
SOURCES = $(libxqilla_la_SOURCES) $(dom_basic_SOURCES) \
$(dom_context_item_SOURCES) $(dom_resolver_SOURCES) \
$(simple_basic_SOURCES) $(simple_context_item_SOURCES) \
$(xmarkRunner_SOURCES) $(xqilla_SOURCES) $(xqtsRunner_SOURCES)
DIST_SOURCES = $(libxqilla_la_SOURCES) $(basicXQillaUsage_SOURCES) \
DIST_SOURCES = $(libxqilla_la_SOURCES) $(dom_basic_SOURCES) \
$(dom_context_item_SOURCES) $(dom_resolver_SOURCES) \
$(simple_basic_SOURCES) $(simple_context_item_SOURCES) \
$(xmarkRunner_SOURCES) $(xqilla_SOURCES) $(xqtsRunner_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
html-recursive info-recursive install-data-recursive \
@ -299,7 +323,7 @@ INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LDFLAGS = -L$(xerces_lib) -R$(xerces_lib)
LDFLAGS = -L$(xerces_lib) -R$(xerces_lib) $(faxpp_lib)
LEX = @LEX@
LEXLIB = @LEXLIB@
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
@ -349,6 +373,9 @@ datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
faxpp_include = @faxpp_include@
faxpp_lib = @faxpp_lib@
faxpp_library = @faxpp_library@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
@ -384,13 +411,13 @@ xerces_include = @xerces_include@
xerces_lib = @xerces_lib@
AUTOMAKE_OPTIONS = foreign dist-zip
SUBDIRS = include
INCLUDES = -I$(top_srcdir)/include/ -I$(xerces_include) -I$(top_srcdir)/src/lexer/
INCLUDES = -I$(top_srcdir)/include/ -I$(xerces_include) -I$(top_srcdir)/src/lexer/ $(faxpp_include)
LDADD = libxqilla.la
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 2:0:0 -no-undefined -lxerces-c
libxqilla_la_LDFLAGS = -version-info 3:0:0 -no-undefined -lxerces-c $(faxpp_library)
libxqilla_la_SOURCES = \
src/framework/ReferenceCounted.cpp \
src/framework/BaseMemoryManager.cpp \
@ -455,6 +482,7 @@ src/events/EventSerializer.cpp \
src/events/NoInheritFilter.cpp \
src/events/NoInheritFilter.hpp \
src/events/NSFixupFilter.cpp \
src/events/QueryPathTreeFilter.cpp \
src/fulltext/FTContains.cpp \
src/fulltext/FTWords.cpp \
src/fulltext/FTOr.cpp \
@ -510,6 +538,8 @@ src/exceptions/XQException.cpp \
src/exceptions/InvalidLexicalSpaceException.hpp \
src/exceptions/MiscException.hpp \
src/functions/ExternalFunction.cpp \
src/functions/XQillaFunction.cpp \
src/functions/FunctionParseXML.cpp \
src/functions/FuncFactory.cpp \
src/functions/FuncFactoryTemplate.hpp \
src/functions/FunctionLookup.cpp \
@ -745,6 +775,8 @@ src/schema/DocumentCacheImpl.cpp \
src/schema/SequenceType.cpp \
src/schema/AnyAtomicTypeDatatypeValidator.cpp \
src/schema/SchemaValidatorFilter.cpp \
src/schema/FaxppDocumentCacheImpl.hpp \
src/schema/FaxppDocumentCacheImpl.cpp \
src/runtime/ClosureResult.cpp \
src/runtime/EmptyResult.cpp \
src/runtime/LazySequenceResult.cpp \
@ -816,15 +848,23 @@ src/xerces/XercesSequenceBuilder.cpp \
src/xerces/XercesUpdateFactory.hpp \
src/xerces/XercesUpdateFactory.cpp \
src/xerces/XercesURIResolver.hpp \
src/xerces/XercesURIResolver.cpp
src/xerces/XercesURIResolver.cpp \
src/optimizer/Optimizer.cpp \
src/optimizer/ASTVisitor.cpp \
src/optimizer/QueryPathNode.cpp \
src/optimizer/QueryPathTreeGenerator.cpp
EXTRA_DIST = \
src/lexer/flex.skl \
src/lexer/XQLexer.l \
src/parser/XQParser.y \
src/parser/XQParser.y \
src/samples/dom-api/data.xml \
src/samples/dom-api/data.xsd \
src/samples/dom-api/foo.xml \
src/samples/simple-api/foo.xml \
LICENSE \
LICENSE.xquery.txt \
LICENSE.pathan.txt \
TODO \
ChangeLog \
docs/Doxyfile.simpleapi.in \
docs/Doxyfile.dom3api.in \
@ -833,50 +873,70 @@ docs/dom3_header.html \
docs/simple_header.html \
docs/simple-api \
docs/dom3-api \
Win32Projects/VC6/dom-basic.dsp \
Win32Projects/VC6/dom-context-item.dsp \
Win32Projects/VC6/dom-resolver.dsp \
Win32Projects/VC6/simple-basic.dsp \
Win32Projects/VC6/simple-context-item.dsp \
Win32Projects/VC6/xmarkRunner.dsp \
Win32Projects/VC6/xqilla.dsp \
Win32Projects/VC6/xqilla_cmd.dsp \
Win32Projects/VC6/basicXQillaUsage.dsp \
Win32Projects/VC6/xqtsRunner.dsp \
Win32Projects/VC6/XQilla.dsw \
Win32Projects/VC7.1/xqilla.vcproj \
Win32Projects/VC7.1/xqilla_static.vcproj \
Win32Projects/VC7.1/xqilla_cmd.vcproj \
Win32Projects/VC7.1/basicXQillaUsage.vcproj \
Win32Projects/VC7.1/xqilla_cmd_static.vcproj \
Win32Projects/VC7.1/xqtsRunner.vcproj \
Win32Projects/VC7.1/xmarkRunner.vcproj \
Win32Projects/VC7.1/simple-basic.vcproj \
Win32Projects/VC7.1/simple-context-item.vcproj \
Win32Projects/VC7.1/dom-basic.vcproj \
Win32Projects/VC7.1/dom-context-item.vcproj \
Win32Projects/VC7.1/dom-resolver.vcproj \
Win32Projects/VC7.1/XQilla.sln \
tests/xqts/xqts_testsuite/errors.xml \
wintools/app_dsp.src \
wintools/app_vcproj.src \
wintools/filter_dsp.end \
wintools/filter_dsp.start \
wintools/filter_vcproj.end \
wintools/filter_vcproj.start \
wintools/lib_paths.sed \
wintools/README \
wintools/srcfile_dsp.src \
wintools/srcfile_filt_vcproj.src \
wintools/srcfiles.in \
wintools/srcfile_vcproj.src \
wintools/s_win32 \
wintools/s_win32_common \
wintools/s_win32_dsp \
wintools/s_win32_vcproj \
wintools/xqilla.projects \
wintools/xqilla.template.xml \
wintools/s_projects \
wintools/genproject.template \
wintools/xqilla_cmd.dsp.src \
wintools/xqilla_cmd.vcproj.src \
wintools/xqilla_dsp.src \
wintools/xqilla_vcproj.src
wintools/xqilla_dsp.src
xqilla_SOURCES = \
src/samples/xqilla/xqilla-commandline.cpp
basicXQillaUsage_SOURCES = \
src/samples/basic/basicXQillaUsage.cpp
xqtsRunner_SOURCES = \
tests/xqts/runner.cpp
xmarkRunner_SOURCES = \
tests/xmark/xmark.cpp
simple_basic_SOURCES = \
src/samples/simple-api/simple-basic.cpp
simple_context_item_SOURCES = \
src/samples/simple-api/simple-context-item.cpp
dom_basic_SOURCES = \
src/samples/dom-api/dom-basic.cpp
dom_context_item_SOURCES = \
src/samples/dom-api/dom-context-item.cpp
dom_resolver_SOURCES = \
src/samples/dom-api/dom-resolver.cpp
LEXERFILE = $(top_srcdir)/src/lexer/XQLexer.cpp
LEXTEMPLATE = $(top_srcdir)/src/lexer/XQLexer.l
LEXSKEL = $(top_srcdir)/src/lexer/flex.skl
@ -1001,9 +1061,21 @@ clean-noinstPROGRAMS:
echo " rm -f $$p $$f"; \
rm -f $$p $$f ; \
done
basicXQillaUsage$(EXEEXT): $(basicXQillaUsage_OBJECTS) $(basicXQillaUsage_DEPENDENCIES)
@rm -f basicXQillaUsage$(EXEEXT)
$(CXXLINK) $(basicXQillaUsage_OBJECTS) $(basicXQillaUsage_LDADD) $(LIBS)
dom-basic$(EXEEXT): $(dom_basic_OBJECTS) $(dom_basic_DEPENDENCIES)
@rm -f dom-basic$(EXEEXT)
$(CXXLINK) $(dom_basic_OBJECTS) $(dom_basic_LDADD) $(LIBS)
dom-context-item$(EXEEXT): $(dom_context_item_OBJECTS) $(dom_context_item_DEPENDENCIES)
@rm -f dom-context-item$(EXEEXT)
$(CXXLINK) $(dom_context_item_OBJECTS) $(dom_context_item_LDADD) $(LIBS)
dom-resolver$(EXEEXT): $(dom_resolver_OBJECTS) $(dom_resolver_DEPENDENCIES)
@rm -f dom-resolver$(EXEEXT)
$(CXXLINK) $(dom_resolver_OBJECTS) $(dom_resolver_LDADD) $(LIBS)
simple-basic$(EXEEXT): $(simple_basic_OBJECTS) $(simple_basic_DEPENDENCIES)
@rm -f simple-basic$(EXEEXT)
$(CXXLINK) $(simple_basic_OBJECTS) $(simple_basic_LDADD) $(LIBS)
simple-context-item$(EXEEXT): $(simple_context_item_OBJECTS) $(simple_context_item_DEPENDENCIES)
@rm -f simple-context-item$(EXEEXT)
$(CXXLINK) $(simple_context_item_OBJECTS) $(simple_context_item_LDADD) $(LIBS)
xmarkRunner$(EXEEXT): $(xmarkRunner_OBJECTS) $(xmarkRunner_DEPENDENCIES)
@rm -f xmarkRunner$(EXEEXT)
$(CXXLINK) $(xmarkRunner_OBJECTS) $(xmarkRunner_LDADD) $(LIBS)
@ -1021,6 +1093,7 @@ distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ASTNodeImpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ASTVisitor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ATAnySimpleTypeImpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ATAnyURIOrDerivedImpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ATBase64BinaryOrDerivedImpl.Plo@am__quote@
@ -1096,6 +1169,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FastXDMNodeImpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FastXDMSequenceBuilder.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FastXDMUpdateFactory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FaxppDocumentCacheImpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FollowingAxis.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FollowingSiblingAxis.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ForTuple.Plo@am__quote@
@ -1175,6 +1249,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FunctionNot.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FunctionNumber.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FunctionOneOrMore.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FunctionParseXML.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FunctionPosition.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FunctionPrefixFromQName.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FunctionPut.Plo@am__quote@
@ -1239,6 +1314,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Numeric.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NumericFunction.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NumericTypeConstructor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Optimizer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Or.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/OrderByTuple.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/OrderComparison.Plo@am__quote@
@ -1250,6 +1326,9 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PrintAST.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ProxyMemoryManager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/QName.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/QueryPathNode.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/QueryPathTreeFilter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/QueryPathTreeGenerator.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Range.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ReferenceCounted.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Result.Plo@am__quote@
@ -1346,6 +1425,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XQillaDocumentImpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XQillaException.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XQillaExpressionImpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XQillaFunction.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XQillaImplementation.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XQillaNSResolverImpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XQillaPlatformUtils.Plo@am__quote@
@ -1356,7 +1436,9 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XercesSequenceBuilder.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XercesURIResolver.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XercesUpdateFactory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/basicXQillaUsage.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dom-basic.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dom-context-item.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dom-resolver.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/m_apm.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mapm5sin.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mapm_add.Plo@am__quote@
@ -1396,6 +1478,8 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mapmutil.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mapmutl2.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runner.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple-basic.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple-context-item.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmark.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xqilla-commandline.Po@am__quote@
@ -2120,6 +2204,13 @@ NSFixupFilter.lo: src/events/NSFixupFilter.cpp
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o NSFixupFilter.lo `test -f 'src/events/NSFixupFilter.cpp' || echo '$(srcdir)/'`src/events/NSFixupFilter.cpp
QueryPathTreeFilter.lo: src/events/QueryPathTreeFilter.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT QueryPathTreeFilter.lo -MD -MP -MF $(DEPDIR)/QueryPathTreeFilter.Tpo -c -o QueryPathTreeFilter.lo `test -f 'src/events/QueryPathTreeFilter.cpp' || echo '$(srcdir)/'`src/events/QueryPathTreeFilter.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/QueryPathTreeFilter.Tpo $(DEPDIR)/QueryPathTreeFilter.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/events/QueryPathTreeFilter.cpp' object='QueryPathTreeFilter.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o QueryPathTreeFilter.lo `test -f 'src/events/QueryPathTreeFilter.cpp' || echo '$(srcdir)/'`src/events/QueryPathTreeFilter.cpp
FTContains.lo: src/fulltext/FTContains.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FTContains.lo -MD -MP -MF $(DEPDIR)/FTContains.Tpo -c -o FTContains.lo `test -f 'src/fulltext/FTContains.cpp' || echo '$(srcdir)/'`src/fulltext/FTContains.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/FTContains.Tpo $(DEPDIR)/FTContains.Plo
@ -2421,6 +2512,20 @@ ExternalFunction.lo: src/functions/ExternalFunction.cpp
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ExternalFunction.lo `test -f 'src/functions/ExternalFunction.cpp' || echo '$(srcdir)/'`src/functions/ExternalFunction.cpp
XQillaFunction.lo: src/functions/XQillaFunction.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT XQillaFunction.lo -MD -MP -MF $(DEPDIR)/XQillaFunction.Tpo -c -o XQillaFunction.lo `test -f 'src/functions/XQillaFunction.cpp' || echo '$(srcdir)/'`src/functions/XQillaFunction.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/XQillaFunction.Tpo $(DEPDIR)/XQillaFunction.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/functions/XQillaFunction.cpp' object='XQillaFunction.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o XQillaFunction.lo `test -f 'src/functions/XQillaFunction.cpp' || echo '$(srcdir)/'`src/functions/XQillaFunction.cpp
FunctionParseXML.lo: src/functions/FunctionParseXML.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FunctionParseXML.lo -MD -MP -MF $(DEPDIR)/FunctionParseXML.Tpo -c -o FunctionParseXML.lo `test -f 'src/functions/FunctionParseXML.cpp' || echo '$(srcdir)/'`src/functions/FunctionParseXML.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/FunctionParseXML.Tpo $(DEPDIR)/FunctionParseXML.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/functions/FunctionParseXML.cpp' object='FunctionParseXML.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FunctionParseXML.lo `test -f 'src/functions/FunctionParseXML.cpp' || echo '$(srcdir)/'`src/functions/FunctionParseXML.cpp
FuncFactory.lo: src/functions/FuncFactory.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FuncFactory.lo -MD -MP -MF $(DEPDIR)/FuncFactory.Tpo -c -o FuncFactory.lo `test -f 'src/functions/FuncFactory.cpp' || echo '$(srcdir)/'`src/functions/FuncFactory.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/FuncFactory.Tpo $(DEPDIR)/FuncFactory.Plo
@ -3716,6 +3821,13 @@ SchemaValidatorFilter.lo: src/schema/SchemaValidatorFilter.cpp
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SchemaValidatorFilter.lo `test -f 'src/schema/SchemaValidatorFilter.cpp' || echo '$(srcdir)/'`src/schema/SchemaValidatorFilter.cpp
FaxppDocumentCacheImpl.lo: src/schema/FaxppDocumentCacheImpl.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FaxppDocumentCacheImpl.lo -MD -MP -MF $(DEPDIR)/FaxppDocumentCacheImpl.Tpo -c -o FaxppDocumentCacheImpl.lo `test -f 'src/schema/FaxppDocumentCacheImpl.cpp' || echo '$(srcdir)/'`src/schema/FaxppDocumentCacheImpl.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/FaxppDocumentCacheImpl.Tpo $(DEPDIR)/FaxppDocumentCacheImpl.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/schema/FaxppDocumentCacheImpl.cpp' object='FaxppDocumentCacheImpl.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FaxppDocumentCacheImpl.lo `test -f 'src/schema/FaxppDocumentCacheImpl.cpp' || echo '$(srcdir)/'`src/schema/FaxppDocumentCacheImpl.cpp
ClosureResult.lo: src/runtime/ClosureResult.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ClosureResult.lo -MD -MP -MF $(DEPDIR)/ClosureResult.Tpo -c -o ClosureResult.lo `test -f 'src/runtime/ClosureResult.cpp' || echo '$(srcdir)/'`src/runtime/ClosureResult.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/ClosureResult.Tpo $(DEPDIR)/ClosureResult.Plo
@ -4059,19 +4171,103 @@ XercesURIResolver.lo: src/xerces/XercesURIResolver.cpp
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o XercesURIResolver.lo `test -f 'src/xerces/XercesURIResolver.cpp' || echo '$(srcdir)/'`src/xerces/XercesURIResolver.cpp
basicXQillaUsage.o: src/samples/basic/basicXQillaUsage.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT basicXQillaUsage.o -MD -MP -MF $(DEPDIR)/basicXQillaUsage.Tpo -c -o basicXQillaUsage.o `test -f 'src/samples/basic/basicXQillaUsage.cpp' || echo '$(srcdir)/'`src/samples/basic/basicXQillaUsage.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/basicXQillaUsage.Tpo $(DEPDIR)/basicXQillaUsage.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/basic/basicXQillaUsage.cpp' object='basicXQillaUsage.o' libtool=no @AMDEPBACKSLASH@
Optimizer.lo: src/optimizer/Optimizer.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Optimizer.lo -MD -MP -MF $(DEPDIR)/Optimizer.Tpo -c -o Optimizer.lo `test -f 'src/optimizer/Optimizer.cpp' || echo '$(srcdir)/'`src/optimizer/Optimizer.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/Optimizer.Tpo $(DEPDIR)/Optimizer.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/optimizer/Optimizer.cpp' object='Optimizer.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o basicXQillaUsage.o `test -f 'src/samples/basic/basicXQillaUsage.cpp' || echo '$(srcdir)/'`src/samples/basic/basicXQillaUsage.cpp
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Optimizer.lo `test -f 'src/optimizer/Optimizer.cpp' || echo '$(srcdir)/'`src/optimizer/Optimizer.cpp
basicXQillaUsage.obj: src/samples/basic/basicXQillaUsage.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT basicXQillaUsage.obj -MD -MP -MF $(DEPDIR)/basicXQillaUsage.Tpo -c -o basicXQillaUsage.obj `if test -f 'src/samples/basic/basicXQillaUsage.cpp'; then $(CYGPATH_W) 'src/samples/basic/basicXQillaUsage.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/basic/basicXQillaUsage.cpp'; fi`
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/basicXQillaUsage.Tpo $(DEPDIR)/basicXQillaUsage.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/basic/basicXQillaUsage.cpp' object='basicXQillaUsage.obj' libtool=no @AMDEPBACKSLASH@
ASTVisitor.lo: src/optimizer/ASTVisitor.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ASTVisitor.lo -MD -MP -MF $(DEPDIR)/ASTVisitor.Tpo -c -o ASTVisitor.lo `test -f 'src/optimizer/ASTVisitor.cpp' || echo '$(srcdir)/'`src/optimizer/ASTVisitor.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/ASTVisitor.Tpo $(DEPDIR)/ASTVisitor.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/optimizer/ASTVisitor.cpp' object='ASTVisitor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o basicXQillaUsage.obj `if test -f 'src/samples/basic/basicXQillaUsage.cpp'; then $(CYGPATH_W) 'src/samples/basic/basicXQillaUsage.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/basic/basicXQillaUsage.cpp'; fi`
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ASTVisitor.lo `test -f 'src/optimizer/ASTVisitor.cpp' || echo '$(srcdir)/'`src/optimizer/ASTVisitor.cpp
QueryPathNode.lo: src/optimizer/QueryPathNode.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT QueryPathNode.lo -MD -MP -MF $(DEPDIR)/QueryPathNode.Tpo -c -o QueryPathNode.lo `test -f 'src/optimizer/QueryPathNode.cpp' || echo '$(srcdir)/'`src/optimizer/QueryPathNode.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/QueryPathNode.Tpo $(DEPDIR)/QueryPathNode.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/optimizer/QueryPathNode.cpp' object='QueryPathNode.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o QueryPathNode.lo `test -f 'src/optimizer/QueryPathNode.cpp' || echo '$(srcdir)/'`src/optimizer/QueryPathNode.cpp
QueryPathTreeGenerator.lo: src/optimizer/QueryPathTreeGenerator.cpp
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT QueryPathTreeGenerator.lo -MD -MP -MF $(DEPDIR)/QueryPathTreeGenerator.Tpo -c -o QueryPathTreeGenerator.lo `test -f 'src/optimizer/QueryPathTreeGenerator.cpp' || echo '$(srcdir)/'`src/optimizer/QueryPathTreeGenerator.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/QueryPathTreeGenerator.Tpo $(DEPDIR)/QueryPathTreeGenerator.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/optimizer/QueryPathTreeGenerator.cpp' object='QueryPathTreeGenerator.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o QueryPathTreeGenerator.lo `test -f 'src/optimizer/QueryPathTreeGenerator.cpp' || echo '$(srcdir)/'`src/optimizer/QueryPathTreeGenerator.cpp
dom-basic.o: src/samples/dom-api/dom-basic.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dom-basic.o -MD -MP -MF $(DEPDIR)/dom-basic.Tpo -c -o dom-basic.o `test -f 'src/samples/dom-api/dom-basic.cpp' || echo '$(srcdir)/'`src/samples/dom-api/dom-basic.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/dom-basic.Tpo $(DEPDIR)/dom-basic.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/dom-api/dom-basic.cpp' object='dom-basic.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dom-basic.o `test -f 'src/samples/dom-api/dom-basic.cpp' || echo '$(srcdir)/'`src/samples/dom-api/dom-basic.cpp
dom-basic.obj: src/samples/dom-api/dom-basic.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dom-basic.obj -MD -MP -MF $(DEPDIR)/dom-basic.Tpo -c -o dom-basic.obj `if test -f 'src/samples/dom-api/dom-basic.cpp'; then $(CYGPATH_W) 'src/samples/dom-api/dom-basic.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/dom-api/dom-basic.cpp'; fi`
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/dom-basic.Tpo $(DEPDIR)/dom-basic.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/dom-api/dom-basic.cpp' object='dom-basic.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dom-basic.obj `if test -f 'src/samples/dom-api/dom-basic.cpp'; then $(CYGPATH_W) 'src/samples/dom-api/dom-basic.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/dom-api/dom-basic.cpp'; fi`
dom-context-item.o: src/samples/dom-api/dom-context-item.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dom-context-item.o -MD -MP -MF $(DEPDIR)/dom-context-item.Tpo -c -o dom-context-item.o `test -f 'src/samples/dom-api/dom-context-item.cpp' || echo '$(srcdir)/'`src/samples/dom-api/dom-context-item.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/dom-context-item.Tpo $(DEPDIR)/dom-context-item.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/dom-api/dom-context-item.cpp' object='dom-context-item.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dom-context-item.o `test -f 'src/samples/dom-api/dom-context-item.cpp' || echo '$(srcdir)/'`src/samples/dom-api/dom-context-item.cpp
dom-context-item.obj: src/samples/dom-api/dom-context-item.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dom-context-item.obj -MD -MP -MF $(DEPDIR)/dom-context-item.Tpo -c -o dom-context-item.obj `if test -f 'src/samples/dom-api/dom-context-item.cpp'; then $(CYGPATH_W) 'src/samples/dom-api/dom-context-item.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/dom-api/dom-context-item.cpp'; fi`
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/dom-context-item.Tpo $(DEPDIR)/dom-context-item.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/dom-api/dom-context-item.cpp' object='dom-context-item.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dom-context-item.obj `if test -f 'src/samples/dom-api/dom-context-item.cpp'; then $(CYGPATH_W) 'src/samples/dom-api/dom-context-item.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/dom-api/dom-context-item.cpp'; fi`
dom-resolver.o: src/samples/dom-api/dom-resolver.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dom-resolver.o -MD -MP -MF $(DEPDIR)/dom-resolver.Tpo -c -o dom-resolver.o `test -f 'src/samples/dom-api/dom-resolver.cpp' || echo '$(srcdir)/'`src/samples/dom-api/dom-resolver.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/dom-resolver.Tpo $(DEPDIR)/dom-resolver.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/dom-api/dom-resolver.cpp' object='dom-resolver.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dom-resolver.o `test -f 'src/samples/dom-api/dom-resolver.cpp' || echo '$(srcdir)/'`src/samples/dom-api/dom-resolver.cpp
dom-resolver.obj: src/samples/dom-api/dom-resolver.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dom-resolver.obj -MD -MP -MF $(DEPDIR)/dom-resolver.Tpo -c -o dom-resolver.obj `if test -f 'src/samples/dom-api/dom-resolver.cpp'; then $(CYGPATH_W) 'src/samples/dom-api/dom-resolver.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/dom-api/dom-resolver.cpp'; fi`
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/dom-resolver.Tpo $(DEPDIR)/dom-resolver.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/dom-api/dom-resolver.cpp' object='dom-resolver.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dom-resolver.obj `if test -f 'src/samples/dom-api/dom-resolver.cpp'; then $(CYGPATH_W) 'src/samples/dom-api/dom-resolver.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/dom-api/dom-resolver.cpp'; fi`
simple-basic.o: src/samples/simple-api/simple-basic.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple-basic.o -MD -MP -MF $(DEPDIR)/simple-basic.Tpo -c -o simple-basic.o `test -f 'src/samples/simple-api/simple-basic.cpp' || echo '$(srcdir)/'`src/samples/simple-api/simple-basic.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/simple-basic.Tpo $(DEPDIR)/simple-basic.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/simple-api/simple-basic.cpp' object='simple-basic.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple-basic.o `test -f 'src/samples/simple-api/simple-basic.cpp' || echo '$(srcdir)/'`src/samples/simple-api/simple-basic.cpp
simple-basic.obj: src/samples/simple-api/simple-basic.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple-basic.obj -MD -MP -MF $(DEPDIR)/simple-basic.Tpo -c -o simple-basic.obj `if test -f 'src/samples/simple-api/simple-basic.cpp'; then $(CYGPATH_W) 'src/samples/simple-api/simple-basic.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/simple-api/simple-basic.cpp'; fi`
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/simple-basic.Tpo $(DEPDIR)/simple-basic.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/simple-api/simple-basic.cpp' object='simple-basic.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple-basic.obj `if test -f 'src/samples/simple-api/simple-basic.cpp'; then $(CYGPATH_W) 'src/samples/simple-api/simple-basic.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/simple-api/simple-basic.cpp'; fi`
simple-context-item.o: src/samples/simple-api/simple-context-item.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple-context-item.o -MD -MP -MF $(DEPDIR)/simple-context-item.Tpo -c -o simple-context-item.o `test -f 'src/samples/simple-api/simple-context-item.cpp' || echo '$(srcdir)/'`src/samples/simple-api/simple-context-item.cpp
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/simple-context-item.Tpo $(DEPDIR)/simple-context-item.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/simple-api/simple-context-item.cpp' object='simple-context-item.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple-context-item.o `test -f 'src/samples/simple-api/simple-context-item.cpp' || echo '$(srcdir)/'`src/samples/simple-api/simple-context-item.cpp
simple-context-item.obj: src/samples/simple-api/simple-context-item.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple-context-item.obj -MD -MP -MF $(DEPDIR)/simple-context-item.Tpo -c -o simple-context-item.obj `if test -f 'src/samples/simple-api/simple-context-item.cpp'; then $(CYGPATH_W) 'src/samples/simple-api/simple-context-item.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/simple-api/simple-context-item.cpp'; fi`
@am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/simple-context-item.Tpo $(DEPDIR)/simple-context-item.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/samples/simple-api/simple-context-item.cpp' object='simple-context-item.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple-context-item.obj `if test -f 'src/samples/simple-api/simple-context-item.cpp'; then $(CYGPATH_W) 'src/samples/simple-api/simple-context-item.cpp'; else $(CYGPATH_W) '$(srcdir)/src/samples/simple-api/simple-context-item.cpp'; fi`
xmark.o: tests/xmark/xmark.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT xmark.o -MD -MP -MF $(DEPDIR)/xmark.Tpo -c -o xmark.o `test -f 'tests/xmark/xmark.cpp' || echo '$(srcdir)/'`tests/xmark/xmark.cpp

18
TODO Normal file
View file

@ -0,0 +1,18 @@
pull event execution
query plan output using event API
nested loop elimination (group recognition, join recognition)
faster modifiable data model
string pool that returns numeric identifier
support for UTF-8 execution?
extract basic schema types from Xerces-C
abstract schema type access (no direct access to Xerces objects)
build option without Xerces-C
fix UTF-16 bugs
fix XQTS bugs
new test suite
test XQuery Fulltext
complete XQuery Fulltext support
XQueryP support
Grouping support
Fix ATDoubleOrDerivedImpl and ATFloatOrDerivedImpl to use double and float types
replace MAPM

View file

@ -0,0 +1,90 @@
# Microsoft Developer Studio Project File - Name="dom-basic" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=dom-basic - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "dom-basic.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "dom-basic.mak" CFG="dom-basic - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "dom-basic - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "dom-basic - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "dom-basic - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "../../build/windows/VC6\Release"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Release\dom-basic"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "../../build/windows/VC6\Release"
# PROP Intermediate_Dir "../../build/windows/VC6\Release\dom-basic"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src"/I "../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla20.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/dom-basic.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
!ELSEIF "$(CFG)" == "dom-basic - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "../../build/windows/VC6\Debug"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Debug\dom-basic"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "../../build/windows/VC6\Debug"
# PROP Intermediate_Dir "../../build/windows/VC6\Debug\dom-basic"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MDd /W3 /GX /Zi /Od /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src" /I "../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla20d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/dom-basic.exe /pdb:"../../build/windows/VC6/Debug/dom-basic.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
!ENDIF
# Begin Target
# Name "dom-basic - Win32 Release"
# Name "dom-basic - Win32 Debug"
# Begin Source File
SOURCE=..\..\src\samples\dom-api\dom-basic.cpp
# End Source File
# End Target
# End Project

View file

@ -1,24 +1,24 @@
# Microsoft Developer Studio Project File - Name="basicXQillaUsage" - Package Owner=<4>
# Microsoft Developer Studio Project File - Name="dom-context-item" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=basicXQillaUsage - Win32 Debug
CFG=dom-context-item - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "basicXQillaUsage.mak".
!MESSAGE NMAKE /f "dom-context-item.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "basicXQillaUsage.mak" CFG="basicXQillaUsage - Win32 Debug"
!MESSAGE NMAKE /f "dom-context-item.mak" CFG="dom-context-item - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "basicXQillaUsage - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "basicXQillaUsage - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE "dom-context-item - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "dom-context-item - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
# Begin Project
@ -28,17 +28,17 @@ CFG=basicXQillaUsage - Win32 Debug
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "basicXQillaUsage - Win32 Release"
!IF "$(CFG)" == "dom-context-item - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "../../build/windows/VC6\Release"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Release\basicXQillaUsage"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Release\dom-context-item"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "../../build/windows/VC6\Release"
# PROP Intermediate_Dir "../../build/windows/VC6\Release\basicXQillaUsage"
# PROP Intermediate_Dir "../../build/windows/VC6\Release\dom-context-item"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
@ -50,19 +50,19 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla10.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/basicXQillaUsage.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla20.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/dom-context-item.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
!ELSEIF "$(CFG)" == "basicXQillaUsage - Win32 Debug"
!ELSEIF "$(CFG)" == "dom-context-item - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "../../build/windows/VC6\Debug"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Debug\basicXQillaUsage"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Debug\dom-context-item"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "../../build/windows/VC6\Debug"
# PROP Intermediate_Dir "../../build/windows/VC6\Debug\basicXQillaUsage"
# PROP Intermediate_Dir "../../build/windows/VC6\Debug\dom-context-item"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
@ -74,17 +74,17 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla10d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/basicXQillaUsage.exe /pdb:"../../build/windows/VC6/Debug/basicXQillaUsage.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla20d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/dom-context-item.exe /pdb:"../../build/windows/VC6/Debug/dom-context-item.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
!ENDIF
# Begin Target
# Name "basicXQillaUsage - Win32 Release"
# Name "basicXQillaUsage - Win32 Debug"
# Name "dom-context-item - Win32 Release"
# Name "dom-context-item - Win32 Debug"
# Begin Source File
SOURCE=..\..\src\samples\basic\basicXQillaUsage.cpp
SOURCE=..\..\src\samples\dom-api\dom-context-item.cpp
# End Source File
# End Target
# End Project

View file

@ -0,0 +1,90 @@
# Microsoft Developer Studio Project File - Name="dom-resolver" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=dom-resolver - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "dom-resolver.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "dom-resolver.mak" CFG="dom-resolver - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "dom-resolver - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "dom-resolver - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "dom-resolver - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "../../build/windows/VC6\Release"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Release\dom-resolver"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "../../build/windows/VC6\Release"
# PROP Intermediate_Dir "../../build/windows/VC6\Release\dom-resolver"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src"/I "../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla20.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/dom-resolver.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
!ELSEIF "$(CFG)" == "dom-resolver - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "../../build/windows/VC6\Debug"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Debug\dom-resolver"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "../../build/windows/VC6\Debug"
# PROP Intermediate_Dir "../../build/windows/VC6\Debug\dom-resolver"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MDd /W3 /GX /Zi /Od /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src" /I "../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla20d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/dom-resolver.exe /pdb:"../../build/windows/VC6/Debug/dom-resolver.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
!ENDIF
# Begin Target
# Name "dom-resolver - Win32 Release"
# Name "dom-resolver - Win32 Debug"
# Begin Source File
SOURCE=..\..\src\samples\dom-api\dom-resolver.cpp
# End Source File
# End Target
# End Project

View file

@ -0,0 +1,90 @@
# Microsoft Developer Studio Project File - Name="simple-basic" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=simple-basic - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "simple-basic.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "simple-basic.mak" CFG="simple-basic - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "simple-basic - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "simple-basic - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "simple-basic - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "../../build/windows/VC6\Release"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Release\simple-basic"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "../../build/windows/VC6\Release"
# PROP Intermediate_Dir "../../build/windows/VC6\Release\simple-basic"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src"/I "../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla20.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/simple-basic.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
!ELSEIF "$(CFG)" == "simple-basic - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "../../build/windows/VC6\Debug"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Debug\simple-basic"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "../../build/windows/VC6\Debug"
# PROP Intermediate_Dir "../../build/windows/VC6\Debug\simple-basic"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MDd /W3 /GX /Zi /Od /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src" /I "../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla20d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/simple-basic.exe /pdb:"../../build/windows/VC6/Debug/simple-basic.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
!ENDIF
# Begin Target
# Name "simple-basic - Win32 Release"
# Name "simple-basic - Win32 Debug"
# Begin Source File
SOURCE=..\..\src\samples\simple-api\simple-basic.cpp
# End Source File
# End Target
# End Project

View file

@ -0,0 +1,90 @@
# Microsoft Developer Studio Project File - Name="simple-context-item" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=simple-context-item - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "simple-context-item.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "simple-context-item.mak" CFG="simple-context-item - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "simple-context-item - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "simple-context-item - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "simple-context-item - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "../../build/windows/VC6\Release"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Release\simple-context-item"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "../../build/windows/VC6\Release"
# PROP Intermediate_Dir "../../build/windows/VC6\Release\simple-context-item"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src"/I "../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla20.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/simple-context-item.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
!ELSEIF "$(CFG)" == "simple-context-item - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "../../build/windows/VC6\Debug"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Debug\simple-context-item"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "../../build/windows/VC6\Debug"
# PROP Intermediate_Dir "../../build/windows/VC6\Debug\simple-context-item"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MDd /W3 /GX /Zi /Od /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src" /I "../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla20d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/simple-context-item.exe /pdb:"../../build/windows/VC6/Debug/simple-context-item.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
!ENDIF
# Begin Target
# Name "simple-context-item - Win32 Release"
# Name "simple-context-item - Win32 Debug"
# Begin Source File
SOURCE=..\..\src\samples\simple-api\simple-context-item.cpp
# End Source File
# End Target
# End Project

View file

@ -0,0 +1,90 @@
# Microsoft Developer Studio Project File - Name="xmarkRunner" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=xmarkRunner - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "xmarkRunner.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "xmarkRunner.mak" CFG="xmarkRunner - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "xmarkRunner - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "xmarkRunner - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "xmarkRunner - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "../../build/windows/VC6\Release"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Release\xmarkRunner"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "../../build/windows/VC6\Release"
# PROP Intermediate_Dir "../../build/windows/VC6\Release\xmarkRunner"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src"/I "../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla20.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/xmarkRunner.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
!ELSEIF "$(CFG)" == "xmarkRunner - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "../../build/windows/VC6\Debug"
# PROP BASE Intermediate_Dir "../../build/windows/VC6\Debug\xmarkRunner"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "../../build/windows/VC6\Debug"
# PROP Intermediate_Dir "../../build/windows/VC6\Debug\xmarkRunner"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MDd /W3 /GX /Zi /Od /I "." /I "../../include" /I "../../../xerces-c-src/include" /I "../../../xerces-c-src/src" /I "../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla20d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/xmarkRunner.exe /pdb:"../../build/windows/VC6/Debug/xmarkRunner.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
!ENDIF
# Begin Target
# Name "xmarkRunner - Win32 Release"
# Name "xmarkRunner - Win32 Debug"
# Begin Source File
SOURCE=..\..\tests\xmark\xmark.cpp
# End Source File
# End Target
# End Project

View file

@ -53,7 +53,7 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
# ADD LINK32 /libpath:"../../build/windows/VC6/Release" xerces-c_2.lib /nologo /base:"0x69000000" /dll /machine:I386 /out:"../../build/windows/VC6/Release/xqilla10.dll" /implib:"../../build/windows/VC6/Release/xqilla10.lib" /libpath:"../../../xerces-c-src/Build/Win32/VC6/Release" /OPT:REF
# ADD LINK32 /libpath:"../../build/windows/VC6/Release" xerces-c_2.lib /nologo /base:"0x69000000" /dll /machine:I386 /out:"../../build/windows/VC6/Release/xqilla20.dll" /implib:"../../build/windows/VC6/Release/xqilla20.lib" /libpath:"../../../xerces-c-src/Build/Win32/VC6/Release" /OPT:REF
# SUBTRACT LINK32 /pdb:none
!ELSEIF "$(CFG)" == "xqilla - Win32 Debug"
@ -80,7 +80,7 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /libpath:"../../build/windows/VC6/Debug" xerces-c_2D.lib /nologo /base:"0x69000000" /dll /debug /machine:I386 /out:"../../build/windows/VC6/Debug/xqilla10d.dll" /implib:"../../build/windows/VC6/Debug/xqilla10d.lib" /pdbtype:sept /pdb:"../../build/windows/VC6/Debug/xqilla10.pdb" /libpath:"../../../xerces-c-src/Build/Win32/VC6/Debug"
# ADD LINK32 /libpath:"../../build/windows/VC6/Debug" xerces-c_2D.lib /nologo /base:"0x69000000" /dll /debug /machine:I386 /out:"../../build/windows/VC6/Debug/xqilla20d.dll" /implib:"../../build/windows/VC6/Debug/xqilla20d.lib" /pdbtype:sept /pdb:"../../build/windows/VC6/Debug/xqilla20d.pdb" /libpath:"../../../xerces-c-src/Build/Win32/VC6/Debug"
!ENDIF
@ -725,6 +725,10 @@ SOURCE=..\..\src\events\NSFixupFilter.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\events\QueryPathTreeFilter.cpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\events\ContentSequenceFilter.hpp
# End Source File
# Begin Source File
@ -741,6 +745,10 @@ SOURCE=..\..\include\xqilla\events\NSFixupFilter.hpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\events\QueryPathTreeFilter.hpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\events\SequenceBuilder.hpp
# End Source File
# End Group
@ -1389,6 +1397,10 @@ SOURCE=..\..\src\functions\FunctionOneOrMore.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\functions\FunctionParseXML.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\functions\FunctionPosition.cpp
# End Source File
# Begin Source File
@ -1541,6 +1553,10 @@ SOURCE=..\..\src\functions\FunctionZeroOrOne.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\functions\XQillaFunction.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\functions\XQUserFunction.cpp
# End Source File
# Begin Source File
@ -1853,6 +1869,10 @@ SOURCE=..\..\include\xqilla\functions\FunctionOneOrMore.hpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\functions\FunctionParseXML.hpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\functions\FunctionPosition.hpp
# End Source File
# Begin Source File
@ -2005,6 +2025,10 @@ SOURCE=..\..\include\xqilla\functions\FunctionZeroOrOne.hpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\functions\XQillaFunction.hpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\functions\XQUserFunction.hpp
# End Source File
# End Group
@ -2756,6 +2780,42 @@ SOURCE=..\..\include\xqilla\operators\UnaryMinus.hpp
SOURCE=..\..\include\xqilla\operators\Union.hpp
# End Source File
# End Group
# Begin Group "optimizer"
# PROP Default_Filter ""
# Begin Source File
SOURCE=..\..\src\optimizer\ASTVisitor.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\optimizer\Optimizer.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\optimizer\QueryPathNode.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\optimizer\QueryPathTreeGenerator.cpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\optimizer\ASTVisitor.hpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\optimizer\Optimizer.hpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\optimizer\QueryPathNode.hpp
# End Source File
# Begin Source File
SOURCE=..\..\include\xqilla\optimizer\QueryPathTreeGenerator.hpp
# End Source File
# End Group
# Begin Group "parser"
# PROP Default_Filter ""
@ -2881,6 +2941,14 @@ SOURCE=..\..\src\schema\DocumentCacheImpl.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\schema\FaxppDocumentCacheImpl.cpp
# End Source File
# Begin Source File
SOURCE=..\..\src\schema\FaxppDocumentCacheImpl.hpp
# End Source File
# Begin Source File
SOURCE=..\..\src\schema\SchemaValidatorFilter.cpp
# End Source File
# Begin Source File

View file

@ -50,7 +50,7 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla10.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/xqilla.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla20.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/xqilla.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
!ELSEIF "$(CFG)" == "xqilla_cmd - Win32 Debug"
@ -74,7 +74,7 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla10d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/xqilla.exe /pdb:"../../build/windows/VC6/Debug/xqilla.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla20d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/xqilla.exe /pdb:"../../build/windows/VC6/Debug/xqilla.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
!ENDIF

View file

@ -50,7 +50,7 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla10.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/xqtsRunner.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
# ADD LINK32 /libpath:../../build/windows/VC6/Release xerces-c_2.lib xqilla20.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Release /nologo /out:../../build/windows/VC6/Release/xqtsRunner.exe /subsystem:console /machine:I386 /nodefaultlib:"libcmt"
!ELSEIF "$(CFG)" == "xqtsRunner - Win32 Debug"
@ -74,7 +74,7 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla10d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/xqtsRunner.exe /pdb:"../../build/windows/VC6/Debug/xqtsRunner.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
# ADD LINK32 /libpath:../../build/windows/VC6/Debug xerces-c_2d.lib xqilla20d.lib /libpath:../../../xerces-c-src/Build/Win32/VC6/Debug /nologo /out:../../build/windows/VC6/Debug/xqtsRunner.exe /pdb:"../../build/windows/VC6/Debug/xqtsRunner.pdb" /subsystem:console /debug /machine:I386 /nodefaultlib:"libcmt"
!ENDIF

View file

@ -3,6 +3,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla", "XQilla.vcproj", "
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xqilla_static", "xqilla_static.vcproj", "{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "basicXQillaUsage", "basicXQillaUsage.vcproj", "{FF1806C2-8740-43F7-9A2F-800B617EFF15}"
ProjectSection(ProjectDependencies) = postProject
{63E85107-41E0-4FC7-8083-40E85861B426} = {63E85107-41E0-4FC7-8083-40E85861B426}
@ -76,6 +80,12 @@ Global
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Debug AMD64.Build.0 = Debug AMD64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release AMD64.ActiveCfg = Release AMD64|Win32
{E8F410F3-AA0A-4E73-97DC-B444C2CBDAA3}.Release AMD64.Build.0 = Release AMD64|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Debug.ActiveCfg = Debug|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Debug AMD64.ActiveCfg = Debug AMD64|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Debug IA64.ActiveCfg = Debug IA64|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Release.ActiveCfg = Release|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Release AMD64.ActiveCfg = Release AMD64|Win32
{B96FD1CF-A620-4A8A-AC4B-EBCFA324D9D1}.Release IA64.ActiveCfg = Release IA64|Win32
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
EndGlobalSection

View file

@ -1,401 +0,0 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.10"
Name="basicXQillaUsage"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Name="Release|Win32"
OutputDirectory="../../build/windows/VC7.1\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)\basicXQillaUsage"
ConfigurationType="1"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE"
CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
MinimalRebuild="TRUE"
InlineFunctionExpansion="1"
AdditionalIncludeDirectories="../../include,../../../xerces-c-src/include,../../../xerces-c-src/src,../../include"
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE=1"
StringPooling="TRUE"
RuntimeLibrary="2"
EnableFunctionLevelLinking="TRUE"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\$(OutDir)/basicXQillaUsage.pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
WarningLevel="3"
SuppressStartupBanner="TRUE"
CompileAs="0"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/FIXED:NO"
AdditionalDependencies="xqilla10.lib xerces-c_2.lib"
AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)"
OutputFile="$(OutDir)/basicXQillaUsage.exe"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="libcmt"
SubSystem="1"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\$(OutDir)/basicXQillaUsage.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="NDEBUG;_CRT_SECURE_NO_DEPRECATE=1"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory="../../build/windows/VC7.1\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)\basicXQillaUsage"
ConfigurationType="1"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE"
CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
MinimalRebuild="TRUE"
AdditionalIncludeDirectories="../../include,../../../xerces-c-src/include,../../../xerces-c-src/src,../../include"
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE=1"
RuntimeLibrary="3"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\$(OutDir)/basicXQillaUsage.pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
WarningLevel="3"
SuppressStartupBanner="TRUE"
DebugInformationFormat="3"
CompileAs="0"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/FIXED:NO"
AdditionalDependencies="xqilla10d.lib xerces-c_2d.lib"
AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)"
OutputFile="$(OutDir)/basicXQillaUsage.exe"
LinkIncremental="2"
SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="libcmtd"
GenerateDebugInformation="TRUE"
ProgramDataBaseFile="$(OutDir)/basicXQillaUsage.pdb"
SubSystem="1"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\$(OutDir)/basicXQillaUsage.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="_DEBUG;_CRT_SECURE_NO_DEPRECATE=1"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Release AMD64|Win32"
OutputDirectory="../../build/windows/VC7.1\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)\basicXQillaUsage"
ConfigurationType="1"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE"
CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
MinimalRebuild="TRUE"
InlineFunctionExpansion="1"
AdditionalIncludeDirectories="../../include,../../../xerces-c-src/include,../../../xerces-c-src/src,../../include"
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE=1"
StringPooling="TRUE"
RuntimeLibrary="2"
EnableFunctionLevelLinking="TRUE"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\$(OutDir)/basicXQillaUsage.pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
WarningLevel="3"
SuppressStartupBanner="TRUE"
CompileAs="0"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/FIXED:NO"
AdditionalDependencies="xqilla10.lib xerces-c_2.lib"
AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)"
OutputFile="$(OutDir)/basicXQillaUsage.exe"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="libcmt"
SubSystem="1"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\$(OutDir)/basicXQillaUsage.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="NDEBUG;_CRT_SECURE_NO_DEPRECATE=1"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Debug AMD64|Win32"
OutputDirectory="../../build/windows/VC7.1\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)\basicXQillaUsage"
ConfigurationType="1"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE"
CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
MinimalRebuild="TRUE"
AdditionalIncludeDirectories="../../include,../../../xerces-c-src/include,../../../xerces-c-src/src,../../include"
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE=1"
RuntimeLibrary="3"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\$(OutDir)/basicXQillaUsage.pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
WarningLevel="3"
SuppressStartupBanner="TRUE"
DebugInformationFormat="3"
CompileAs="0"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/FIXED:NO"
AdditionalDependencies="xqilla10d.lib xerces-c_2d.lib"
AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)"
OutputFile="$(OutDir)/basicXQillaUsage.exe"
LinkIncremental="2"
SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="libcmtd"
GenerateDebugInformation="TRUE"
ProgramDataBaseFile="$(OutDir)/basicXQillaUsage.pdb"
SubSystem="1"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\$(OutDir)/basicXQillaUsage.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="_DEBUG;_CRT_SECURE_NO_DEPRECATE=1"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Release IA64|Win32"
OutputDirectory="../../build/windows/VC7.1\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)\basicXQillaUsage"
ConfigurationType="1"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE"
CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
MinimalRebuild="TRUE"
InlineFunctionExpansion="1"
AdditionalIncludeDirectories="../../include,../../../xerces-c-src/include,../../../xerces-c-src/src,../../include"
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE=1"
StringPooling="TRUE"
RuntimeLibrary="2"
EnableFunctionLevelLinking="TRUE"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\$(OutDir)/basicXQillaUsage.pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
WarningLevel="3"
SuppressStartupBanner="TRUE"
CompileAs="0"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/FIXED:NO"
AdditionalDependencies="xqilla10.lib xerces-c_2.lib"
AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)"
OutputFile="$(OutDir)/basicXQillaUsage.exe"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="libcmt"
SubSystem="1"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\$(OutDir)/basicXQillaUsage.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="NDEBUG;_CRT_SECURE_NO_DEPRECATE=1"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Debug IA64|Win32"
OutputDirectory="../../build/windows/VC7.1\$(ConfigurationName)"
IntermediateDirectory=".\$(OutDir)\basicXQillaUsage"
ConfigurationType="1"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE"
CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
MinimalRebuild="TRUE"
AdditionalIncludeDirectories="../../include,../../../xerces-c-src/include,../../../xerces-c-src/src,../../include"
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE=1"
RuntimeLibrary="3"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\$(OutDir)/basicXQillaUsage.pch"
AssemblerListingLocation=".\$(OutDir)/"
ObjectFile=".\$(OutDir)/"
WarningLevel="3"
SuppressStartupBanner="TRUE"
DebugInformationFormat="3"
CompileAs="0"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalOptions="/FIXED:NO"
AdditionalDependencies="xqilla10d.lib xerces-c_2d.lib"
AdditionalLibraryDirectories="$(OutDir);../../../xerces-c-src/Build/Win32/VC7.1/$(ConfigurationName)"
OutputFile="$(OutDir)/basicXQillaUsage.exe"
LinkIncremental="2"
SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="libcmtd"
GenerateDebugInformation="TRUE"
ProgramDataBaseFile="$(OutDir)/basicXQillaUsage.pdb"
SubSystem="1"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\$(OutDir)/basicXQillaUsage.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="_DEBUG;_CRT_SECURE_NO_DEPRECATE=1"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<File
RelativePath="..\..\src\samples\basic\basicXQillaUsage.cpp">
</File>
</Files>
<Globals>
</Globals>
</VisualStudioProject>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

144
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for XQilla 1.1.0.
# Generated by GNU Autoconf 2.61 for XQilla 2.0.0.
#
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
@ -726,8 +726,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='XQilla'
PACKAGE_TARNAME='xqilla'
PACKAGE_VERSION='1.1.0'
PACKAGE_STRING='XQilla 1.1.0'
PACKAGE_VERSION='2.0.0'
PACKAGE_STRING='XQilla 2.0.0'
PACKAGE_BUGREPORT=''
ac_unique_file="src/runtime/Result.cpp"
@ -842,6 +842,9 @@ am__tar
am__untar
xerces_include
xerces_lib
faxpp_include
faxpp_lib
faxpp_library
CXX
CXXFLAGS
LDFLAGS
@ -1404,7 +1407,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 1.1.0 to adapt to many kinds of systems.
\`configure' configures XQilla 2.0.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1475,7 +1478,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of XQilla 1.1.0:";;
short | recursive ) echo "Configuration of XQilla 2.0.0:";;
esac
cat <<\_ACEOF
@ -1495,6 +1498,7 @@ Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-xerces=DIR Path of Xerces. DIR="../xerces-c-src"
--with-faxpp=DIR Path of FAXPP. DIR="/usr/local"
--with-gnu-ld assume the C compiler uses GNU ld [default=no]
--with-pic try to use only PIC/non-PIC objects [default=use
both]
@ -1583,7 +1587,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
XQilla configure 1.1.0
XQilla configure 2.0.0
generated by GNU Autoconf 2.61
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@ -1597,7 +1601,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 1.1.0, which was
It was created by XQilla $as_me 2.0.0, which was
generated by GNU Autoconf 2.61. Invocation command line was
$ $0 $@
@ -2416,7 +2420,7 @@ fi
# Define the identity of the package.
PACKAGE=XQilla
VERSION=1.1.0
VERSION=2.0.0
cat >>confdefs.h <<_ACEOF
@ -2673,6 +2677,69 @@ fi
# Check if the FAXPP library is present
{ echo "$as_me:$LINENO: checking if --with-faxpp=DIR option specified" >&5
echo $ECHO_N "checking if --with-faxpp=DIR option specified... $ECHO_C" >&6; }
# Check whether --with-faxpp was given.
if test "${with_faxpp+set}" = set; then
withval=$with_faxpp; with_faxpp="$withval"
else
with_faxpp="no"
fi
{ echo "$as_me:$LINENO: result: $with_faxpp" >&5
echo "${ECHO_T}$with_faxpp" >&6; }
if test "$with_faxpp" = "no"; then
with_faxpp="/usr/local"
fi
{ echo "$as_me:$LINENO: checking if the FAXPP library is present" >&5
echo $ECHO_N "checking if the FAXPP library is present... $ECHO_C" >&6; }
if test `ls $with_faxpp/lib/libfaxpp.* 2>/dev/null | wc -l` -gt 0 ; then
{ echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6; }
cat >>confdefs.h <<\_ACEOF
#define HAVE_FAXPP 1
_ACEOF
faxpp_lib="-L$with_faxpp/lib -R$with_faxpp/lib"
faxpp_library="-lfaxpp"
faxpp_include="-I$with_faxpp/include"
elif test `ls $with_faxpp/libfaxpp.* 2>/dev/null | wc -l` -gt 0 ; then
if test `ls $with_faxpp/include/faxpp/parser.h 2>/dev/null | wc -l` -gt 0 ; then
{ echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6; }
cat >>confdefs.h <<\_ACEOF
#define HAVE_FAXPP 1
_ACEOF
faxpp_lib="-L$with_faxpp -R$with_faxpp"
faxpp_library="-lfaxpp"
faxpp_include="-I$with_faxpp/include"
elif test `ls $with_faxpp/../include/faxpp/parser.h 2>/dev/null | wc -l` -gt 0 ; then
{ echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6; }
cat >>confdefs.h <<\_ACEOF
#define HAVE_FAXPP 1
_ACEOF
faxpp_lib="-L$with_faxpp -R$with_faxpp"
faxpp_library="-lfaxpp"
faxpp_include="-I$with_faxpp/../include"
fi
else
{ echo "$as_me:$LINENO: result: no" >&5
echo "${ECHO_T}no" >&6; }
faxpp_lib=""
faxpp_library=""
faxpp_include=""
fi
# Checks for programs.
ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
@ -4948,7 +5015,7 @@ ia64-*-hpux*)
;;
*-*-irix6*)
# Find out which ABI we are using.
echo '#line 4951 "configure"' > conftest.$ac_ext
echo '#line 5018 "configure"' > conftest.$ac_ext
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
@ -7202,11 +7269,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:7205: $lt_compile\"" >&5)
(eval echo "\"\$as_me:7272: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
echo "$as_me:7209: \$? = $ac_status" >&5
echo "$as_me:7276: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
@ -7470,11 +7537,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:7473: $lt_compile\"" >&5)
(eval echo "\"\$as_me:7540: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
echo "$as_me:7477: \$? = $ac_status" >&5
echo "$as_me:7544: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
@ -7574,11 +7641,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:7577: $lt_compile\"" >&5)
(eval echo "\"\$as_me:7644: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
echo "$as_me:7581: \$? = $ac_status" >&5
echo "$as_me:7648: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
@ -9871,7 +9938,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
#line 9874 "configure"
#line 9941 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@ -9971,7 +10038,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
#line 9974 "configure"
#line 10041 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@ -12307,11 +12374,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:12310: $lt_compile\"" >&5)
(eval echo "\"\$as_me:12377: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
echo "$as_me:12314: \$? = $ac_status" >&5
echo "$as_me:12381: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
@ -12411,11 +12478,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:12414: $lt_compile\"" >&5)
(eval echo "\"\$as_me:12481: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
echo "$as_me:12418: \$? = $ac_status" >&5
echo "$as_me:12485: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
@ -13972,11 +14039,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:13975: $lt_compile\"" >&5)
(eval echo "\"\$as_me:14042: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
echo "$as_me:13979: \$? = $ac_status" >&5
echo "$as_me:14046: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
@ -14076,11 +14143,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:14079: $lt_compile\"" >&5)
(eval echo "\"\$as_me:14146: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
echo "$as_me:14083: \$? = $ac_status" >&5
echo "$as_me:14150: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
@ -16263,11 +16330,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:16266: $lt_compile\"" >&5)
(eval echo "\"\$as_me:16333: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
echo "$as_me:16270: \$? = $ac_status" >&5
echo "$as_me:16337: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
@ -16531,11 +16598,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:16534: $lt_compile\"" >&5)
(eval echo "\"\$as_me:16601: $lt_compile\"" >&5)
(eval "$lt_compile" 2>conftest.err)
ac_status=$?
cat conftest.err >&5
echo "$as_me:16538: \$? = $ac_status" >&5
echo "$as_me:16605: \$? = $ac_status" >&5
if (exit $ac_status) && test -s "$ac_outfile"; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings other than the usual output.
@ -16635,11 +16702,11 @@ else
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-e 's:$: $lt_compiler_flag:'`
(eval echo "\"\$as_me:16638: $lt_compile\"" >&5)
(eval echo "\"\$as_me:16705: $lt_compile\"" >&5)
(eval "$lt_compile" 2>out/conftest.err)
ac_status=$?
cat out/conftest.err >&5
echo "$as_me:16642: \$? = $ac_status" >&5
echo "$as_me:16709: \$? = $ac_status" >&5
if (exit $ac_status) && test -s out/conftest2.$ac_objext
then
# The compiler can only warn and ignore the option if not recognized
@ -22510,7 +22577,7 @@ exec 6>&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 1.1.0, which was
This file was extended by XQilla $as_me 2.0.0, which was
generated by GNU Autoconf 2.61. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -22563,7 +22630,7 @@ Report bugs to <bug-autoconf@gnu.org>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
XQilla config.status 1.1.0
XQilla config.status 2.0.0
configured by $0, generated by GNU Autoconf 2.61,
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
@ -22816,6 +22883,9 @@ am__tar!$am__tar$ac_delim
am__untar!$am__untar$ac_delim
xerces_include!$xerces_include$ac_delim
xerces_lib!$xerces_lib$ac_delim
faxpp_include!$faxpp_include$ac_delim
faxpp_lib!$faxpp_lib$ac_delim
faxpp_library!$faxpp_library$ac_delim
CXX!$CXX$ac_delim
CXXFLAGS!$CXXFLAGS$ac_delim
LDFLAGS!$LDFLAGS$ac_delim
@ -22837,9 +22907,6 @@ CFLAGS!$CFLAGS$ac_delim
ac_ct_CC!$ac_ct_CC$ac_delim
CCDEPMODE!$CCDEPMODE$ac_delim
am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
GREP!$GREP$ac_delim
EGREP!$EGREP$ac_delim
_ACEOF
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
@ -22881,6 +22948,9 @@ _ACEOF
ac_delim='%!_!# '
for ac_last_try in false false false false false :; do
cat >conf$$subs.sed <<_ACEOF
am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
GREP!$GREP$ac_delim
EGREP!$EGREP$ac_delim
LN_S!$LN_S$ac_delim
ECHO!$ECHO$ac_delim
AR!$AR$ac_delim
@ -22901,7 +22971,7 @@ LIBOBJS!$LIBOBJS$ac_delim
LTLIBOBJS!$LTLIBOBJS$ac_delim
_ACEOF
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 18; then
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 21; then
break
elif $ac_last_try; then
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5

View file

@ -2,10 +2,10 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT([XQilla],[1.1.0],[])
AC_INIT([XQilla],[2.0.0],[])
AC_CONFIG_AUX_DIR(autotools)
AC_CANONICAL_TARGET([])
AM_INIT_AUTOMAKE(XQilla, 1.1.0,)
AM_INIT_AUTOMAKE(XQilla, 2.0.0,)
AC_CONFIG_SRCDIR([src/runtime/Result.cpp])
AC_CONFIG_HEADERS([src/config/xqilla_config_unix.h])
@ -89,6 +89,47 @@ fi
AC_SUBST(xerces_include)
AC_SUBST(xerces_lib)
# Check if the FAXPP library is present
AH_TEMPLATE(HAVE_FAXPP, [Define to 1 if the FAXPP library is present.])
AC_MSG_CHECKING([if --with-faxpp=DIR option specified])
AC_ARG_WITH(faxpp,
[AS_HELP_STRING(--with-faxpp=DIR,Path of FAXPP. [DIR="/usr/local"])],
[with_faxpp="$withval"], [with_faxpp="no"])
AC_MSG_RESULT($with_faxpp)
if test "$with_faxpp" = "no"; then
with_faxpp="/usr/local"
fi
AC_MSG_CHECKING([if the FAXPP library is present])
if test `ls $with_faxpp/lib/libfaxpp.* 2>/dev/null | wc -l` -gt 0 ; then
AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_FAXPP)
faxpp_lib="-L$with_faxpp/lib -R$with_faxpp/lib"
faxpp_library="-lfaxpp"
faxpp_include="-I$with_faxpp/include"
elif test `ls $with_faxpp/libfaxpp.* 2>/dev/null | wc -l` -gt 0 ; then
if test `ls $with_faxpp/include/faxpp/parser.h 2>/dev/null | wc -l` -gt 0 ; then
AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_FAXPP)
faxpp_lib="-L$with_faxpp -R$with_faxpp"
faxpp_library="-lfaxpp"
faxpp_include="-I$with_faxpp/include"
elif test `ls $with_faxpp/../include/faxpp/parser.h 2>/dev/null | wc -l` -gt 0 ; then
AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_FAXPP)
faxpp_lib="-L$with_faxpp -R$with_faxpp"
faxpp_library="-lfaxpp"
faxpp_include="-I$with_faxpp/../include"
fi
else
AC_MSG_RESULT([no])
faxpp_lib=""
faxpp_library=""
faxpp_include=""
fi
AC_SUBST(faxpp_include)
AC_SUBST(faxpp_lib)
AC_SUBST(faxpp_library)
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC

View file

@ -103,7 +103,7 @@
<a name="l00179"></a>00179 <span class="preprocessor">#endif</span>
<a name="l00180"></a>00180 <span class="preprocessor"></span>
<a name="l00181"></a>00181
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -45,7 +45,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMAttr.html">DOMAttr</a></code> class refers to an attribute of an XML element. <a href="classxercesc_1_1DOMAttr.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:58 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:04 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -39,7 +39,7 @@
<a name="l00019"></a>00019 <span class="comment"> */</span>
<a name="l00020"></a>00020
<a name="l00021"></a>00021 <span class="comment">/*</span>
<a name="l00022"></a>00022 <span class="comment"> * $Id: DOMBuilder.hpp 568078 2007-08-21 11:43:25Z amassari $</span>
<a name="l00022"></a>00022 <span class="comment"> * $Id: DOMBuilder.hpp 569031 2007-08-23 15:05:28Z amassari $</span>
<a name="l00023"></a>00023 <span class="comment"> *</span>
<a name="l00024"></a>00024 <span class="comment"> */</span>
<a name="l00025"></a>00025
@ -184,7 +184,7 @@
<a name="l00684"></a>00684 XERCES_CPP_NAMESPACE_END
<a name="l00685"></a>00685
<a name="l00686"></a>00686 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMBuilder.html">DOMBuilder</a> provides an API for parsing XML documents and building the corresponding DOM document tree. <a href="classxercesc_1_1DOMBuilder.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:58 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:04 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -76,7 +76,7 @@
<a name="l00103"></a>00103 <span class="preprocessor">#endif</span>
<a name="l00104"></a>00104 <span class="preprocessor"></span>
<a name="l00105"></a>00105
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -45,7 +45,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. <a href="classxercesc_1_1DOMCDATASection.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:59 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:04 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -104,7 +104,7 @@
<a name="l00213"></a>00213 <span class="preprocessor">#endif</span>
<a name="l00214"></a>00214 <span class="preprocessor"></span>
<a name="l00215"></a>00215
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -47,7 +47,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMCharacterData.html">DOMCharacterData</a></code> interface extends <a class="el" href="classxercesc_1_1DOMNode.html">DOMNode</a> with a set of attributes and methods for accessing character data in the DOM. <a href="classxercesc_1_1DOMCharacterData.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:59 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:05 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -74,7 +74,7 @@
<a name="l00075"></a>00075
<a name="l00076"></a>00076 <span class="preprocessor">#endif</span>
<a name="l00077"></a>00077 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -45,7 +45,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface inherits from <code>CharacterData</code> and represents the content of a comment, i.e., all the characters between the starting ' <code>&lt;!--</code>' and ending '<code>--&gt;</code>'. <a href="classxercesc_1_1DOMComment.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:59 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:05 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -91,7 +91,7 @@
<a name="l00505"></a>00505
<a name="l00506"></a>00506 <span class="preprocessor">#endif </span>
<a name="l00507"></a>00507 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -59,7 +59,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</div>
</div><p>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:59 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:05 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -74,7 +74,7 @@
<a name="l00107"></a>00107 XERCES_CPP_NAMESPACE_END
<a name="l00108"></a>00108
<a name="l00109"></a>00109 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a> is a "lightweight" or "minimal" <a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a> object. <a href="classxercesc_1_1DOMDocumentFragment.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:59 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:05 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -82,7 +82,7 @@
<a name="l00093"></a>00093 XERCES_CPP_NAMESPACE_END
<a name="l00094"></a>00094
<a name="l00095"></a>00095 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentRange.html">xercesc::DOMDocumentRange</a></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:59 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:05 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -92,7 +92,7 @@
<a name="l00153"></a>00153 XERCES_CPP_NAMESPACE_END
<a name="l00154"></a>00154
<a name="l00155"></a>00155 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -41,7 +41,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><code><a class="el" href="classxercesc_1_1DOMDocumentTraversal.html">DOMDocumentTraversal</a></code> contains methods that create <code>DOMNodeIterators</code> and <code>DOMTreeWalkers</code> to traverse a node and its children in document order (depth first, pre-order traversal, which is equivalent to the order in which the start tags occur in the text representation of the document). <a href="classxercesc_1_1DOMDocumentTraversal.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:00 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:05 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -94,7 +94,7 @@
<a name="l00159"></a>00159 <span class="preprocessor">#endif</span>
<a name="l00160"></a>00160 <span class="preprocessor"></span>
<a name="l00161"></a>00161
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Each <code><a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a></code> has a <code>doctype</code> attribute whose value is either <code>null</code> or a <code><a class="el" href="classxercesc_1_1DOMDocumentType.html">DOMDocumentType</a></code> object. <a href="classxercesc_1_1DOMDocumentType.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:00 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:05 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -202,7 +202,7 @@
<a name="l00877"></a>00877 XERCES_CPP_NAMESPACE_END
<a name="l00878"></a>00878
<a name="l00879"></a>00879 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -50,7 +50,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a></code> interface represents the entire XML document. <a href="classxercesc_1_1DOMDocument.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:59 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:05 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -143,7 +143,7 @@
<a name="l00469"></a>00469 <span class="preprocessor"></span>
<a name="l00470"></a>00470
<a name="l00471"></a>00471
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -45,7 +45,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">By far the vast majority of objects (apart from text) that authors encounter when traversing a document are <code><a class="el" href="classxercesc_1_1DOMElement.html">DOMElement</a></code> nodes. <a href="classxercesc_1_1DOMElement.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:00 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:06 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -76,7 +76,7 @@
<a name="l00095"></a>00095 <span class="preprocessor">#endif</span>
<a name="l00096"></a>00096 <span class="preprocessor"></span>
<a name="l00097"></a>00097
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><code><a class="el" href="classxercesc_1_1DOMEntityReference.html">DOMEntityReference</a></code> objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. <a href="classxercesc_1_1DOMEntityReference.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:00 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:06 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -87,7 +87,7 @@
<a name="l00143"></a>00143 XERCES_CPP_NAMESPACE_END
<a name="l00144"></a>00144
<a name="l00145"></a>00145 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMEntityResolver.html">DOMEntityResolver</a> provides a way for applications to redirect references to external entities. <a href="classxercesc_1_1DOMEntityResolver.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:00 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:06 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -98,7 +98,7 @@
<a name="l00206"></a>00206
<a name="l00207"></a>00207 <span class="preprocessor">#endif</span>
<a name="l00208"></a>00208 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface represents an entity, either parsed or unparsed, in an XML document. <a href="classxercesc_1_1DOMEntity.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:00 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:06 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -81,7 +81,7 @@
<a name="l00107"></a>00107 XERCES_CPP_NAMESPACE_END
<a name="l00108"></a>00108
<a name="l00109"></a>00109 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -41,7 +41,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Basic interface for DOM error handlers. <a href="classxercesc_1_1DOMErrorHandler.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:01 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:06 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -122,7 +122,7 @@
<a name="l00251"></a>00251 XERCES_CPP_NAMESPACE_END
<a name="l00252"></a>00252
<a name="l00253"></a>00253 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMError.html">DOMError</a> is an interface that describes an error. <a href="classxercesc_1_1DOMError.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:01 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:06 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -36,7 +36,7 @@ Include dependency graph for DOMException.cpp:<p><center><img src="DOMException_
<tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:01 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:06 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -130,7 +130,7 @@
<a name="l00252"></a>00252
<a name="l00253"></a>00253 <span class="preprocessor">#endif</span>
<a name="l00254"></a>00254 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMException.html">xercesc::DOMException</a></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:01 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:07 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -106,7 +106,7 @@
<a name="l00178"></a>00178 XERCES_CPP_NAMESPACE_END
<a name="l00179"></a>00179
<a name="l00180"></a>00180 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMImplementationLS.html">xercesc::DOMImplementationLS</a></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:02 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:07 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -67,7 +67,7 @@
<a name="l00087"></a>00087 XERCES_CPP_NAMESPACE_END
<a name="l00088"></a>00088
<a name="l00089"></a>00089 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMImplementationRegistry.html">xercesc::DOMImplementationRegistry</a></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:02 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:07 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -81,7 +81,7 @@
<a name="l00100"></a>00100 XERCES_CPP_NAMESPACE_END
<a name="l00101"></a>00101
<a name="l00102"></a>00102 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMImplementationSource.html">xercesc::DOMImplementationSource</a></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:02 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:07 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -124,7 +124,7 @@
<a name="l00266"></a>00266 XERCES_CPP_NAMESPACE_END
<a name="l00267"></a>00267
<a name="l00268"></a>00268 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -50,7 +50,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMImplementation.html">DOMImplementation</a></code> interface provides a number of methods for performing operations that are independent of any particular instance of the document object model. <a href="classxercesc_1_1DOMImplementation.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:01 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:07 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -119,7 +119,7 @@
<a name="l00278"></a>00278 XERCES_CPP_NAMESPACE_END
<a name="l00279"></a>00279
<a name="l00280"></a>00280 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface represents a single input source for an XML entity. <a href="classxercesc_1_1DOMInputSource.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:02 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:07 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -105,7 +105,7 @@
<a name="l00206"></a>00206 XERCES_CPP_NAMESPACE_END
<a name="l00207"></a>00207
<a name="l00208"></a>00208 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMLocator.html">DOMLocator</a> is an interface that describes a location. <a href="classxercesc_1_1DOMLocator.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:02 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:07 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -108,7 +108,7 @@
<a name="l00245"></a>00245
<a name="l00246"></a>00246 <span class="preprocessor">#endif</span>
<a name="l00247"></a>00247 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -59,7 +59,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</div>
</div><p>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:02 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:07 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -101,7 +101,7 @@
<a name="l00216"></a>00216 XERCES_CPP_NAMESPACE_END
<a name="l00217"></a>00217
<a name="l00218"></a>00218 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -47,7 +47,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Filters are objects that know how to "filter out" nodes. <a href="classxercesc_1_1DOMNodeFilter.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:03 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:08 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -102,7 +102,7 @@
<a name="l00194"></a>00194 XERCES_CPP_NAMESPACE_END
<a name="l00195"></a>00195
<a name="l00196"></a>00196 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -64,7 +64,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</div>
</div><p>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:03 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:08 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -86,7 +86,7 @@
<a name="l00112"></a>00112 <span class="preprocessor">#endif</span>
<a name="l00113"></a>00113 <span class="preprocessor"></span>
<a name="l00114"></a>00114
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMNodeList.html">DOMNodeList</a></code> interface provides the abstraction of an ordered collection of nodes. <a href="classxercesc_1_1DOMNodeList.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:03 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:08 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -236,7 +236,7 @@
<a name="l00958"></a>00958
<a name="l00959"></a>00959 <span class="preprocessor">#endif</span>
<a name="l00960"></a>00960 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -147,7 +147,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</div>
</div><p>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:02 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:08 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -87,7 +87,7 @@
<a name="l00112"></a>00112 <span class="preprocessor">#endif</span>
<a name="l00113"></a>00113 <span class="preprocessor"></span>
<a name="l00114"></a>00114
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface represents a notation declared in the DTD. <a href="classxercesc_1_1DOMNotation.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:03 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:08 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -97,7 +97,7 @@
<a name="l00115"></a>00115
<a name="l00116"></a>00116 <span class="preprocessor">#endif</span>
<a name="l00117"></a>00117 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -53,7 +53,7 @@ Include dependency graph for DOMPSVITypeInfo.hpp:<p><center><img src="DOMPSVITyp
</div>
</div><p>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:03 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:08 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -90,7 +90,7 @@
<a name="l00120"></a>00120
<a name="l00121"></a>00121 <span class="preprocessor">#endif</span>
<a name="l00122"></a>00122 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMProcessingInstruction.html">DOMProcessingInstruction</a></code> interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document. <a href="classxercesc_1_1DOMProcessingInstruction.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:03 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:08 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -33,7 +33,7 @@ Include dependency graph for DOMRangeException.cpp:<p><center><img src="DOMRange
<tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:03 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:09 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -93,7 +93,7 @@
<a name="l00131"></a>00131
<a name="l00132"></a>00132 <span class="preprocessor">#endif</span>
<a name="l00133"></a>00133 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -47,7 +47,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Range operations may throw a <code><a class="el" href="classxercesc_1_1DOMRangeException.html">DOMRangeException</a></code> as specified in their method descriptions. <a href="classxercesc_1_1DOMRangeException.html#_details">More...</a><br></td></tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:38:04 2007 for XQilla DOM Level 3 API by&nbsp;
<hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:09 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

View file

@ -151,7 +151,7 @@
<a name="l00528"></a>00528 XERCES_CPP_NAMESPACE_END
<a name="l00529"></a>00529
<a name="l00530"></a>00530 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Aug 31 14:37:57 2007 for XQilla DOM Level 3 API by&nbsp;
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Dec 12 20:17:03 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>

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