├── src
├── Xerces
│ ├── config.h
│ ├── xercesc
│ │ ├── util
│ │ │ ├── MsgLoaders
│ │ │ │ ├── ICU
│ │ │ │ │ └── resources
│ │ │ │ │ │ └── res-file-list.txt
│ │ │ │ ├── Win32
│ │ │ │ │ ├── Version.rc
│ │ │ │ │ └── resource.h
│ │ │ │ └── MsgCatalog
│ │ │ │ │ └── XMLMsgCat_Ids.hpp
│ │ │ └── XMLFloat.cpp
│ │ └── validators
│ │ │ └── schema
│ │ │ └── TraverseSchema.cpp
│ ├── CREDITS
│ └── NOTICE
├── googlemock
│ ├── build-aux
│ │ └── .keep
│ ├── gtest
│ │ ├── build-aux
│ │ │ └── .keep
│ │ └── xcode
│ │ │ └── Config
│ │ │ ├── TestTarget.xcconfig
│ │ │ └── FrameworkTarget.xcconfig
│ ├── scripts
│ │ └── generator
│ │ │ └── cpp
│ │ │ └── __init__.py
│ ├── custom_changes.txt
│ └── msvc
│ │ └── gmock_config.vsprops
├── FlightCrew
│ └── tests
│ │ └── test_data
│ │ ├── framework_tests
│ │ ├── EpubValidates_NotAZip.epub
│ │ ├── EpubValidates_Valid.epub
│ │ ├── EpubValidates_MissingTitle.epub
│ │ ├── EpubValidates_NoContainerXml.epub
│ │ └── EpubValidates_MissingXhtmlFiles.epub
│ │ ├── opf_tests
│ │ ├── ReachabilityAnalysis_AllOk
│ │ │ ├── cover.gif
│ │ │ ├── main.css
│ │ │ ├── subdir
│ │ │ │ └── third.css
│ │ │ ├── test2.xhtml
│ │ │ ├── test3.xhtml
│ │ │ └── test1.xhtml
│ │ ├── ItemFilesPresent_FilesMissing
│ │ │ ├── test1.xhtml
│ │ │ ├── test3.xhtml
│ │ │ └── content.opf
│ │ ├── ItemFilesPresent_AllFilesPresent
│ │ │ ├── test1.xhtml
│ │ │ ├── test2.xhtml
│ │ │ ├── test3.xhtml
│ │ │ └── content.opf
│ │ ├── ReachabilityAnalysis_ReachableDocsNotInSpine
│ │ │ ├── cover.gif
│ │ │ ├── main.css
│ │ │ ├── test2.xhtml
│ │ │ ├── test3.xhtml
│ │ │ └── test1.xhtml
│ │ ├── ReachabilityAnalysis_ManifestResourceNotReachable
│ │ │ ├── cover.gif
│ │ │ ├── main.css
│ │ │ ├── test2.xhtml
│ │ │ ├── test3.xhtml
│ │ │ └── test1.xhtml
│ │ ├── ReachabilityAnalysis_ReachableResourceNotInManifest
│ │ │ ├── cover.gif
│ │ │ ├── main.css
│ │ │ ├── test2.xhtml
│ │ │ ├── test3.xhtml
│ │ │ ├── test4.xhtml
│ │ │ └── test1.xhtml
│ │ ├── OneSpine_NoSpine.xml
│ │ ├── PackageAttributesPresent_MissingAttributes.xml
│ │ ├── OneManifest_NoManifest.xml
│ │ ├── OneMetadata_NoMetadata.xml
│ │ ├── PackageIsRoot_PackageRoot.xml
│ │ ├── PackageIsRoot_PackageNotRoot.xml
│ │ ├── OneSpine_OneSpine.xml
│ │ ├── PackageVersionCorrect_GoodPackageVersion.xml
│ │ ├── PackageVersionCorrect_BadPackageVersion.xml
│ │ ├── OneManifest_OneManifest.xml
│ │ ├── OneMetadata_OneMetadata.xml
│ │ ├── PackageAttributesPresent_AllowedAttributes.xml
│ │ ├── ItemPresent_NoItem.xml
│ │ ├── ItemrefPresent_NoItemref.xml
│ │ ├── OneSpine_TwoSpines.xml
│ │ ├── GuideAttributesPresent_AllowedAttributes.xml
│ │ ├── SpineAttributesPresent_MissingAttributes.xml
│ │ ├── ToursAttributesPresent_AllowedAttributes.xml
│ │ ├── PackageAllowedChildren_WrongChildren.xml
│ │ ├── PackageAttributesPresent_NotAllowedAttributes.xml
│ │ ├── DCMetadataAttributesPresent_AllowedAttributes.xml
│ │ ├── ManifestAttributesPresent_AllowedAttributes.xml
│ │ ├── SpineAttributesPresent_AllowedAttributes.xml
│ │ ├── GuideAllowedChildren_ChildrenOK.xml
│ │ ├── ItemPresent_HasItem.xml
│ │ ├── ItemrefPresent_HasItemref.xml
│ │ ├── OneManifest_TwoManifests.xml
│ │ ├── OneMetadata_TwoMetadatas.xml
│ │ ├── GuideAllowedChildren_WrongChildren.xml
│ │ ├── GuideAttributesPresent_NotAllowedAttributes.xml
│ │ ├── MetadataAttributesPresent_NotAllowedAttributes.xml
│ │ ├── SpineAllowedChildren_ChildrenOK.xml
│ │ ├── ToursAllowedChildren_ChildrenOK.xml
│ │ ├── ToursAttributesPresent_NotAllowedAttributes.xml
│ │ ├── DCMetadataAttributesPresent_NotAllowedAttributes.xml
│ │ ├── SpineAllowedChildren_WrongChildren.xml
│ │ ├── ToursAllowedChildren_WrongChildren.xml
│ │ ├── ManifestAllowedChildren_ChildrenOK.xml
│ │ ├── ManifestAttributesPresent_NotAllowedAttributes.xml
│ │ ├── SpineAttributesPresent_NotAllowedAttributes.xml
│ │ ├── ManifestAllowedChildren_WrongChildren.xml
│ │ ├── ReferenceTypeValid_BadValue.xml
│ │ ├── TourAttributesPresent_MissingAttributes.xml
│ │ ├── MetadataAttributesPresent_AllowedAttributes.xml
│ │ ├── TourAttributesPresent_AllowedAttributes.xml
│ │ ├── ItemrefAttributesPresent_MissingAttributes.xml
│ │ ├── ReferenceAttributesPresent_MissingAttributes.xml
│ │ ├── ItemLinearValid_GoodValue.xml
│ │ ├── TourAllowedChildren_ChildrenOK.xml
│ │ ├── ItemReqModsOnlyWithReqNS_RequiredNamespaceNotPresent.xml
│ │ ├── ItemrefAttributesPresent_AllowedAttributes.xml
│ │ ├── TitlePresent_NoTitle.xml
│ │ ├── TourAllowedChildren_WrongChildren.xml
│ │ ├── TourAttributesPresent_NotAllowedAttributes.xml
│ │ ├── IdentifierPresent_NoIdentifier.xml
│ │ ├── LanguagePresent_NoLanguage.xml
│ │ ├── IdsUnique_AllUnique.xml
│ │ ├── ReferenceAttributesPresent_AllowedAttributes.xml
│ │ ├── SiteAttributesPresent_MissingAttributes.xml
│ │ ├── IdsUnique_AllNotUnique.xml
│ │ ├── ItemHrefUnique_HrefsUnique.xml
│ │ ├── ItemrefAttributesPresent_NotAllowedAttributes.xml
│ │ ├── ItemHrefUnique_HrefsNotUnique.xml
│ │ ├── ItemReqModsOnlyWithReqNS_RequiredNamespacePresent.xml
│ │ ├── ItemLinearValid_BadValue.xml
│ │ ├── LanguagePresent_HasLanguage.xml
│ │ ├── ReferenceAttributesPresent_NotAllowedAttributes.xml
│ │ ├── SiteAttributesPresent_AllowedAttributes.xml
│ │ ├── ItemrefIdrefValid_IdExists.xml
│ │ ├── ItemAttributesPresent_MissingAttributes.xml
│ │ ├── ItemrefIdrefValid_IdDoesNotExist.xml
│ │ ├── TitlePresent_HasTitle.xml
│ │ ├── SiteAttributesPresent_NotAllowedAttributes.xml
│ │ ├── IdsValid_GoodValue.xml
│ │ ├── TypeAttributesPresent_AllowedAttributes.xml
│ │ ├── FormatAttributesPresent_AllowedAttributes.xml
│ │ ├── XMetadataAttributesPresent_AllowedAttributes.xml
│ │ ├── IdsValid_BadValue.xml
│ │ ├── DateAttributesPresent_AllowedAttributes.xml
│ │ ├── MetadataAllowedChildren_DCXChildrenOK.xml
│ │ ├── FormatAttributesPresent_NotAllowedAttributes.xml
│ │ ├── IdentifierPresent_HasIdentifier.xml
│ │ ├── PackageAllowedChildren_ChildrenOK.xml
│ │ ├── RightsAttributesPresent_AllowedAttributes.xml
│ │ ├── SourceAttributesPresent_AllowedAttributes.xml
│ │ ├── SubjectAttributesPresent_AllowedAttributes.xml
│ │ ├── TitleAttributesPresent_AllowedAttributes.xml
│ │ ├── TypeAttributesPresent_NotAllowedAttributes.xml
│ │ ├── CoverageAttributesPresent_AllowedAttributes.xml
│ │ ├── ItemAttributesPresent_AllowedAttributes.xml
│ │ ├── MetaAttributesPresent_MissingAttributes.xml
│ │ ├── PublisherAttributesPresent_AllowedAttributes.xml
│ │ ├── RelationAttributesPresent_AllowedAttributes.xml
│ │ ├── XMetadataAttributesPresent_NotAllowedAttributes.xml
│ │ ├── DescriptionAttributesPresent_AllowedAttributes.xml
│ │ ├── IdentifierAttributesPresent_AllowedAttributes.xml
│ │ ├── DateAttributesPresent_NotAllowedAttributes.xml
│ │ ├── CoverageAttributesPresent_NotAllowedAttributes.xml
│ │ ├── MetadataAllowedChildren_DCXChildrenWrong.xml
│ │ ├── RelationAttributesPresent_NotAllowedAttributes.xml
│ │ ├── RightsAttributesPresent_NotAllowedAttributes.xml
│ │ ├── SourceAttributesPresent_NotAllowedAttributes.xml
│ │ ├── SubjectAttributesPresent_NotAllowedAttributes.xml
│ │ ├── TitleAttributesPresent_NotAllowedAttributes.xml
│ │ ├── IdentifierAttributesPresent_NotAllowedAttributes.xml
│ │ ├── ItemAttributesPresent_NotAllowedAttributes.xml
│ │ ├── NcxPresent_NoNcx.xml
│ │ ├── PublisherAttributesPresent_NotAllowedAttributes.xml
│ │ ├── DescriptionAttributesPresent_NotAllowedAttributes.xml
│ │ ├── CreatorAttributesPresent_AllowedAttributes.xml
│ │ ├── MetaAttributesPresent_AllowedAttributes.xml
│ │ ├── CreatorOrContributorRoleValid_BadValue.xml
│ │ ├── ContributorAttributesPresent_AllowedAttributes.xml
│ │ ├── ItemHrefValid_BadValue.xml
│ │ ├── MetaAttributesPresent_NotAllowedAttributes.xml
│ │ ├── CreatorAttributesPresent_NotAllowedAttributes.xml
│ │ ├── PackageUniqueIdentifierValid_IdDoesNotExist.xml
│ │ ├── PackageUniqueIdentifierValid_IdExists.xml
│ │ ├── ContributorAttributesPresent_NotAllowedAttributes.xml
│ │ ├── XMetadataAllowedChildren_ChildrenOK.xml
│ │ ├── NcxPresent_HasNcx.xml
│ │ ├── XMetadataAllowedChildren_WrongChildren.xml
│ │ ├── SpineTocValid_GoodValue.xml
│ │ └── SpineTocValid_BadValue.xml
│ │ ├── ocf_tests
│ │ ├── ContainerListedOpfPresent_HasOpf
│ │ │ ├── OEBPS
│ │ │ │ └── content.opf
│ │ │ └── META-INF
│ │ │ │ └── container.xml
│ │ ├── ContainerListedOpfPresent_DoesntHaveOpf
│ │ │ ├── OEBPS
│ │ │ │ └── content.opf
│ │ │ └── META-INF
│ │ │ │ └── container.xml
│ │ ├── MimetypeBytesValidTest_BytesValid.epub
│ │ ├── MimetypeBytesValidTest_BytesInvalid.epub
│ │ ├── ContainerListsOpf_DoesntListOpf.xml
│ │ ├── ContainerListsOpf_ListsOpf.xml
│ │ └── ContainerSatisfiesSchema_DoesntSatisfySchema.xml
│ │ ├── xml_tests
│ │ ├── UsesUnicode_ValidUtf16BE.xml
│ │ ├── UsesUnicode_ValidUtf16LE.xml
│ │ ├── UsesUnicode_DeclaresUtf16UsesOther.xml
│ │ ├── UsesUnicode_DeclaresUtf8UsesOther.xml
│ │ ├── UsesUnicode_DeclaresOtherUsesOther.xml
│ │ ├── UsesUnicode_ValidUtf8implicit.xml
│ │ ├── UsesUnicode_ValidUtf8.xml
│ │ └── UsesUnicode_ValidUtf8lowercase.xml
│ │ ├── xhtml_tests
│ │ ├── UsesCorrectDtdTest_DtdCorrect.xhtml
│ │ ├── UsesCorrectDtdTest_DtdIncorrect.xhtml
│ │ ├── SatisfiesXhtmlSchema_XmlError.xhtml
│ │ ├── UsesCorrectDtdTest_DtdIncorrectFarLine.xhtml
│ │ ├── UsesCorrectDtdTest_DtdCorrectWithInternal.xhtml
│ │ └── SatisfiesXhtmlSchema_DoesntSatisfySchema.xhtml
│ │ └── ncx_tests
│ │ ├── ContentTargetsPresent_AllPresent
│ │ ├── test1.xhtml
│ │ ├── test2.xhtml
│ │ └── test3.xhtml
│ │ └── ContentTargetsPresent_NotPresent
│ │ ├── test2.xhtml
│ │ └── test3.xhtml
├── zlib
│ ├── ChangeLog
│ └── inffast.h
├── zipios
│ ├── src
│ │ ├── fcoll.cpp
│ │ ├── backbuffer.h
│ │ ├── collcoll.cpp
│ │ ├── dircoll.cpp
│ │ ├── filepath.cpp
│ │ ├── ziphead.cpp
│ │ ├── basicentry.cpp
│ │ ├── fileentry.cpp
│ │ ├── zipheadio.cpp
│ │ ├── zipios_common.h
│ │ ├── fcollexceptions.cpp
│ │ ├── gzipoutputstream.cpp
│ │ ├── outputstringstream.h
│ │ ├── zipinputstream.cpp
│ │ ├── zipoutputstream.cpp
│ │ ├── zipoutputstreambuf.cpp
│ │ ├── filterinputstreambuf.cpp
│ │ ├── filteroutputstreambuf.cpp
│ │ ├── gzipoutputstreambuf.cpp
│ │ ├── inflateinputstreambuf.cpp
│ │ └── deflateoutputstreambuf.cpp
│ ├── zipios++
│ │ ├── fcoll.h
│ │ ├── collcoll.h
│ │ ├── dircoll.h
│ │ ├── filepath.h
│ │ ├── zipfile.h
│ │ ├── ziphead.h
│ │ ├── basicentry.h
│ │ ├── fileentry.h
│ │ ├── zipheadio.h
│ │ ├── virtualseeker.h
│ │ ├── fcollexceptions.h
│ │ ├── simplesmartptr.h
│ │ ├── zipinputstream.h
│ │ ├── zipoutputstream.h
│ │ ├── gzipoutputstream.h
│ │ ├── zipinputstreambuf.h
│ │ ├── zipios-config.w32.h
│ │ ├── zipoutputstreambuf.h
│ │ ├── filterinputstreambuf.h
│ │ ├── gzipoutputstreambuf.h
│ │ ├── deflateoutputstreambuf.h
│ │ ├── filteroutputstreambuf.h
│ │ ├── inflateinputstreambuf.h
│ │ ├── zipios-config.h
│ │ └── meta-iostreams.h
│ └── changes_made.txt
├── BoostParts
│ ├── libs
│ │ ├── smart_ptr
│ │ │ ├── gccspeed.gif
│ │ │ └── msvcspeed.gif
│ │ ├── format
│ │ │ ├── benchmark
│ │ │ │ ├── results.txt
│ │ │ │ └── Jamfile
│ │ │ └── Jamfile
│ │ ├── filesystem
│ │ │ └── tools
│ │ │ │ └── exclude.txt
│ │ └── thread
│ │ │ ├── tutorial
│ │ │ ├── helloworld.cpp
│ │ │ └── helloworld3.cpp
│ │ │ └── meta
│ │ │ └── libraries.json
│ └── boost
│ │ ├── format
│ │ └── alt_sstream_impl.hpp
│ │ ├── smart_ptr
│ │ ├── detail
│ │ │ └── atomic_count_gcc.hpp
│ │ └── make_unique.hpp
│ │ ├── functional
│ │ ├── hash.hpp
│ │ └── hash_fwd.hpp
│ │ ├── concept
│ │ └── detail
│ │ │ ├── concept_undef.hpp
│ │ │ └── backward_compatibility.hpp
│ │ ├── config
│ │ ├── abi
│ │ │ ├── msvc_suffix.hpp
│ │ │ └── borland_suffix.hpp
│ │ ├── platform
│ │ │ ├── amigaos.hpp
│ │ │ └── cray.hpp
│ │ └── compiler
│ │ │ └── compaq_cxx.hpp
│ │ ├── exception
│ │ ├── enable_error_info.hpp
│ │ ├── enable_current_exception.hpp
│ │ ├── error_info.hpp
│ │ ├── detail
│ │ │ └── attribute_noreturn.hpp
│ │ ├── errinfo_at_line.hpp
│ │ └── errinfo_file_handle.hpp
│ │ ├── thread
│ │ ├── detail
│ │ │ ├── variadic_footer.hpp
│ │ │ ├── work.hpp
│ │ │ └── variadic_header.hpp
│ │ ├── thread.hpp
│ │ ├── csbl
│ │ │ └── memory
│ │ │ │ └── config.hpp
│ │ ├── executor.hpp
│ │ ├── condition.hpp
│ │ ├── locks.hpp
│ │ ├── thread_pool.hpp
│ │ ├── executors
│ │ │ └── work.hpp
│ │ └── cv_status.hpp
│ │ ├── predef
│ │ ├── detail
│ │ │ ├── os_detected.h
│ │ │ ├── comp_detected.h
│ │ │ ├── platform_detected.h
│ │ │ ├── _exception.h
│ │ │ ├── _cassert.h
│ │ │ └── test.h
│ │ ├── library
│ │ │ ├── c
│ │ │ │ └── _prefix.h
│ │ │ └── c.h
│ │ ├── other.h
│ │ ├── library.h
│ │ └── language.h
│ │ ├── typeof
│ │ └── message.hpp
│ │ ├── mpl
│ │ ├── aux_
│ │ │ ├── preprocessed
│ │ │ │ ├── bcc551
│ │ │ │ │ └── quote.hpp
│ │ │ │ ├── msvc60
│ │ │ │ │ └── quote.hpp
│ │ │ │ ├── no_ttp
│ │ │ │ │ └── quote.hpp
│ │ │ │ ├── bcc_pre590
│ │ │ │ │ └── quote.hpp
│ │ │ │ ├── dmc
│ │ │ │ │ └── template_arity.hpp
│ │ │ │ ├── mwcw
│ │ │ │ │ └── template_arity.hpp
│ │ │ │ └── plain
│ │ │ │ │ └── template_arity.hpp
│ │ │ └── config
│ │ │ │ ├── workaround.hpp
│ │ │ │ ├── msvc.hpp
│ │ │ │ ├── intel.hpp
│ │ │ │ └── use_preprocessed.hpp
│ │ ├── end.hpp
│ │ ├── next.hpp
│ │ ├── begin.hpp
│ │ ├── prior.hpp
│ │ ├── logical.hpp
│ │ ├── less.hpp
│ │ ├── plus.hpp
│ │ ├── limits
│ │ │ ├── map.hpp
│ │ │ ├── list.hpp
│ │ │ ├── vector.hpp
│ │ │ ├── arity.hpp
│ │ │ └── unrolling.hpp
│ │ ├── minus.hpp
│ │ ├── times.hpp
│ │ ├── int.hpp
│ │ ├── greater.hpp
│ │ ├── equal_to.hpp
│ │ ├── long.hpp
│ │ ├── less_equal.hpp
│ │ ├── list
│ │ │ └── aux_
│ │ │ │ └── tag.hpp
│ │ ├── not_equal_to.hpp
│ │ ├── greater_equal.hpp
│ │ ├── at_fwd.hpp
│ │ ├── back_fwd.hpp
│ │ ├── map
│ │ │ └── aux_
│ │ │ │ └── tag.hpp
│ │ └── size_fwd.hpp
│ │ ├── detail
│ │ ├── endian.hpp
│ │ ├── lightweight_test.hpp
│ │ ├── scoped_enum_emulation.hpp
│ │ ├── no_exceptions_support.hpp
│ │ └── iterator.hpp
│ │ ├── exception_ptr.hpp
│ │ ├── ref.hpp
│ │ ├── swap.hpp
│ │ ├── utility
│ │ ├── swap.hpp
│ │ ├── addressof.hpp
│ │ └── enable_if.hpp
│ │ ├── atomic.hpp
│ │ ├── noncopyable.hpp
│ │ ├── function
│ │ ├── function0.hpp
│ │ ├── function1.hpp
│ │ ├── function10.hpp
│ │ ├── function2.hpp
│ │ ├── function3.hpp
│ │ ├── function4.hpp
│ │ ├── function5.hpp
│ │ ├── function6.hpp
│ │ ├── function7.hpp
│ │ ├── function8.hpp
│ │ ├── function9.hpp
│ │ └── detail
│ │ │ └── function_iterate.hpp
│ │ ├── checked_delete.hpp
│ │ ├── filesystem
│ │ └── exception.hpp
│ │ ├── align
│ │ └── detail
│ │ │ └── align_cxx11.hpp
│ │ ├── chrono
│ │ ├── chrono.hpp
│ │ └── clock_string.hpp
│ │ ├── function_types
│ │ └── detail
│ │ │ ├── encoding
│ │ │ └── aliases_undef.hpp
│ │ │ └── pp_tags
│ │ │ └── cc_tag.hpp
│ │ ├── iterator_adaptors.hpp
│ │ ├── type_traits
│ │ ├── detail
│ │ │ └── size_t_trait_undef.hpp
│ │ └── aligned_storage.hpp
│ │ ├── iterator.hpp
│ │ ├── weak_ptr.hpp
│ │ ├── type.hpp
│ │ ├── make_shared.hpp
│ │ ├── predef.h
│ │ ├── scoped_ptr.hpp
│ │ ├── scoped_array.hpp
│ │ ├── fusion
│ │ ├── include
│ │ │ ├── next.hpp
│ │ │ ├── any.hpp
│ │ │ ├── cons.hpp
│ │ │ ├── at_c.hpp
│ │ │ ├── fold.hpp
│ │ │ ├── is_view.hpp
│ │ │ ├── size.hpp
│ │ │ ├── begin.hpp
│ │ │ ├── value_of.hpp
│ │ │ ├── as_list.hpp
│ │ │ ├── intrinsic.hpp
│ │ │ ├── category_of.hpp
│ │ │ ├── for_each.hpp
│ │ │ ├── single_view.hpp
│ │ │ ├── tag_of_fwd.hpp
│ │ │ ├── is_segmented.hpp
│ │ │ ├── iterator_base.hpp
│ │ │ ├── transform.hpp
│ │ │ └── reverse_fold.hpp
│ │ ├── support
│ │ │ └── void.hpp
│ │ └── sequence
│ │ │ └── intrinsic
│ │ │ └── at_c.hpp
│ │ ├── intrusive
│ │ └── detail
│ │ │ └── config_end.hpp
│ │ ├── intrusive_ptr.hpp
│ │ ├── tti
│ │ └── detail
│ │ │ ├── ddeftype.hpp
│ │ │ └── dnotype.hpp
│ │ ├── optional.hpp
│ │ ├── interprocess
│ │ └── detail
│ │ │ └── config_external_end.hpp
│ │ ├── range
│ │ └── iterator_range.hpp
│ │ ├── date_time.hpp
│ │ ├── enable_shared_from_this.hpp
│ │ ├── shared_ptr.hpp
│ │ ├── preprocessor
│ │ ├── facilities
│ │ │ └── empty.hpp
│ │ └── punctuation
│ │ │ └── comma.hpp
│ │ ├── shared_array.hpp
│ │ ├── spirit
│ │ └── include
│ │ │ ├── classic_chset.hpp
│ │ │ └── classic_rule.hpp
│ │ ├── unordered
│ │ └── detail
│ │ │ └── fwd.hpp
│ │ ├── unordered_map.hpp
│ │ └── unordered_set.hpp
├── utf8-cpp
│ └── custom_changes.txt
└── FlightCrew-plugin
│ └── plugin.xml
├── installer
└── msvc_crt
│ ├── x64
│ ├── msvcp100.dll
│ └── msvcr100.dll
│ └── x86
│ ├── msvcp100.dll
│ └── msvcr100.dll
└── appveyor_scripts
├── build_flightcrew.sh
└── macdeploy.sh
/src/Xerces/config.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/googlemock/build-aux/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/googlemock/gtest/build-aux/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/googlemock/scripts/generator/cpp/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/framework_tests/EpubValidates_NotAZip.epub:
--------------------------------------------------------------------------------
1 | break me
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_AllOk/cover.gif:
--------------------------------------------------------------------------------
1 | eee
--------------------------------------------------------------------------------
/src/Xerces/xercesc/util/MsgLoaders/ICU/resources/res-file-list.txt:
--------------------------------------------------------------------------------
1 | root.res
2 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemFilesPresent_FilesMissing/test1.xhtml:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemFilesPresent_FilesMissing/test3.xhtml:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemFilesPresent_AllFilesPresent/test1.xhtml:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemFilesPresent_AllFilesPresent/test2.xhtml:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemFilesPresent_AllFilesPresent/test3.xhtml:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ocf_tests/ContainerListedOpfPresent_HasOpf/OEBPS/content.opf:
--------------------------------------------------------------------------------
1 | empty
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableDocsNotInSpine/cover.gif:
--------------------------------------------------------------------------------
1 | eee
--------------------------------------------------------------------------------
/src/Xerces/CREDITS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/Xerces/CREDITS
--------------------------------------------------------------------------------
/src/zlib/ChangeLog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zlib/ChangeLog
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ocf_tests/ContainerListedOpfPresent_DoesntHaveOpf/OEBPS/content.opf:
--------------------------------------------------------------------------------
1 | empty
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ManifestResourceNotReachable/cover.gif:
--------------------------------------------------------------------------------
1 | eee
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableDocsNotInSpine/main.css:
--------------------------------------------------------------------------------
1 | eueueu
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ManifestResourceNotReachable/main.css:
--------------------------------------------------------------------------------
1 | eueueu
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableResourceNotInManifest/cover.gif:
--------------------------------------------------------------------------------
1 | eee
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableResourceNotInManifest/main.css:
--------------------------------------------------------------------------------
1 | eueueu
--------------------------------------------------------------------------------
/src/zipios/src/fcoll.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/fcoll.cpp
--------------------------------------------------------------------------------
/src/zipios/src/backbuffer.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/backbuffer.h
--------------------------------------------------------------------------------
/src/zipios/src/collcoll.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/collcoll.cpp
--------------------------------------------------------------------------------
/src/zipios/src/dircoll.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/dircoll.cpp
--------------------------------------------------------------------------------
/src/zipios/src/filepath.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/filepath.cpp
--------------------------------------------------------------------------------
/src/zipios/src/ziphead.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/ziphead.cpp
--------------------------------------------------------------------------------
/src/zipios/zipios++/fcoll.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/fcoll.h
--------------------------------------------------------------------------------
/src/zipios/src/basicentry.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/basicentry.cpp
--------------------------------------------------------------------------------
/src/zipios/src/fileentry.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/fileentry.cpp
--------------------------------------------------------------------------------
/src/zipios/src/zipheadio.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/zipheadio.cpp
--------------------------------------------------------------------------------
/src/zipios/src/zipios_common.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/zipios_common.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/collcoll.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/collcoll.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/dircoll.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/dircoll.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/filepath.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/filepath.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/zipfile.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/zipfile.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/ziphead.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/ziphead.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/basicentry.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/basicentry.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/fileentry.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/fileentry.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/zipheadio.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/zipheadio.h
--------------------------------------------------------------------------------
/installer/msvc_crt/x64/msvcp100.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/installer/msvc_crt/x64/msvcp100.dll
--------------------------------------------------------------------------------
/installer/msvc_crt/x64/msvcr100.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/installer/msvc_crt/x64/msvcr100.dll
--------------------------------------------------------------------------------
/installer/msvc_crt/x86/msvcp100.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/installer/msvc_crt/x86/msvcp100.dll
--------------------------------------------------------------------------------
/installer/msvc_crt/x86/msvcr100.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/installer/msvc_crt/x86/msvcr100.dll
--------------------------------------------------------------------------------
/src/zipios/src/fcollexceptions.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/fcollexceptions.cpp
--------------------------------------------------------------------------------
/src/zipios/src/gzipoutputstream.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/gzipoutputstream.cpp
--------------------------------------------------------------------------------
/src/zipios/src/outputstringstream.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/outputstringstream.h
--------------------------------------------------------------------------------
/src/zipios/src/zipinputstream.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/zipinputstream.cpp
--------------------------------------------------------------------------------
/src/zipios/src/zipoutputstream.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/zipoutputstream.cpp
--------------------------------------------------------------------------------
/src/zipios/zipios++/virtualseeker.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/virtualseeker.h
--------------------------------------------------------------------------------
/src/Xerces/xercesc/util/XMLFloat.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/Xerces/xercesc/util/XMLFloat.cpp
--------------------------------------------------------------------------------
/src/zipios/src/zipoutputstreambuf.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/zipoutputstreambuf.cpp
--------------------------------------------------------------------------------
/src/zipios/zipios++/fcollexceptions.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/fcollexceptions.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/simplesmartptr.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/simplesmartptr.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/zipinputstream.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/zipinputstream.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/zipoutputstream.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/zipoutputstream.h
--------------------------------------------------------------------------------
/src/zipios/src/filterinputstreambuf.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/filterinputstreambuf.cpp
--------------------------------------------------------------------------------
/src/zipios/src/filteroutputstreambuf.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/filteroutputstreambuf.cpp
--------------------------------------------------------------------------------
/src/zipios/src/gzipoutputstreambuf.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/gzipoutputstreambuf.cpp
--------------------------------------------------------------------------------
/src/zipios/src/inflateinputstreambuf.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/inflateinputstreambuf.cpp
--------------------------------------------------------------------------------
/src/zipios/zipios++/gzipoutputstream.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/gzipoutputstream.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/zipinputstreambuf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/zipinputstreambuf.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/zipios-config.w32.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/zipios-config.w32.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/zipoutputstreambuf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/zipoutputstreambuf.h
--------------------------------------------------------------------------------
/src/BoostParts/libs/smart_ptr/gccspeed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/BoostParts/libs/smart_ptr/gccspeed.gif
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_AllOk/main.css:
--------------------------------------------------------------------------------
1 | @import url("subdir/second.css");
2 | @import "subdir/third.css";
--------------------------------------------------------------------------------
/src/zipios/src/deflateoutputstreambuf.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/src/deflateoutputstreambuf.cpp
--------------------------------------------------------------------------------
/src/zipios/zipios++/filterinputstreambuf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/filterinputstreambuf.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/gzipoutputstreambuf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/gzipoutputstreambuf.h
--------------------------------------------------------------------------------
/src/BoostParts/libs/smart_ptr/msvcspeed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/BoostParts/libs/smart_ptr/msvcspeed.gif
--------------------------------------------------------------------------------
/src/zipios/zipios++/deflateoutputstreambuf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/deflateoutputstreambuf.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/filteroutputstreambuf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/filteroutputstreambuf.h
--------------------------------------------------------------------------------
/src/zipios/zipios++/inflateinputstreambuf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/zipios/zipios++/inflateinputstreambuf.h
--------------------------------------------------------------------------------
/src/BoostParts/boost/format/alt_sstream_impl.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/BoostParts/boost/format/alt_sstream_impl.hpp
--------------------------------------------------------------------------------
/src/BoostParts/libs/format/benchmark/results.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/BoostParts/libs/format/benchmark/results.txt
--------------------------------------------------------------------------------
/src/Xerces/xercesc/util/MsgLoaders/Win32/Version.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/Xerces/xercesc/util/MsgLoaders/Win32/Version.rc
--------------------------------------------------------------------------------
/src/zipios/changes_made.txt:
--------------------------------------------------------------------------------
1 | This has been modified beyond recognition. 64 bit support, Mac OS X support, use of more modern parts of boost, functions added etc.
--------------------------------------------------------------------------------
/src/Xerces/xercesc/validators/schema/TraverseSchema.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/Xerces/xercesc/validators/schema/TraverseSchema.cpp
--------------------------------------------------------------------------------
/src/BoostParts/boost/smart_ptr/detail/atomic_count_gcc.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/BoostParts/boost/smart_ptr/detail/atomic_count_gcc.hpp
--------------------------------------------------------------------------------
/appveyor_scripts/build_flightcrew.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | cmake --version
4 | cd /build
5 | cmake -DCMAKE_BUILD_TYPE=RELEASE -DSKIP_FC_GUI=1 -DNO_TEST_EXE=1 /sources
6 | make -j4
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_ValidUtf16BE.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_ValidUtf16BE.xml
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_ValidUtf16LE.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_ValidUtf16LE.xml
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/framework_tests/EpubValidates_Valid.epub:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/framework_tests/EpubValidates_Valid.epub
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/OneSpine_NoSpine.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageAttributesPresent_MissingAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/framework_tests/EpubValidates_MissingTitle.epub:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/framework_tests/EpubValidates_MissingTitle.epub
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/framework_tests/EpubValidates_NoContainerXml.epub:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/framework_tests/EpubValidates_NoContainerXml.epub
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ocf_tests/MimetypeBytesValidTest_BytesValid.epub:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/ocf_tests/MimetypeBytesValidTest_BytesValid.epub
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/OneManifest_NoManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/OneMetadata_NoMetadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_DeclaresUtf16UsesOther.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_DeclaresUtf16UsesOther.xml
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_DeclaresUtf8UsesOther.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_DeclaresUtf8UsesOther.xml
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ocf_tests/MimetypeBytesValidTest_BytesInvalid.epub:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/ocf_tests/MimetypeBytesValidTest_BytesInvalid.epub
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageIsRoot_PackageRoot.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/BoostParts/libs/filesystem/tools/exclude.txt:
--------------------------------------------------------------------------------
1 | .svn
2 | .obj
3 | .exe
4 | .log
5 | .user
6 | .filters
7 | .sdf
8 | .ncb
9 | .ipch
10 | ipch
11 | Debug
12 | Release
13 | v3_operations_test
14 | temp_fs_test_dir
15 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/framework_tests/EpubValidates_MissingXhtmlFiles.epub:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sigil-Ebook/flightcrew/HEAD/src/FlightCrew/tests/test_data/framework_tests/EpubValidates_MissingXhtmlFiles.epub
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageIsRoot_PackageNotRoot.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/OneSpine_OneSpine.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageVersionCorrect_GoodPackageVersion.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageVersionCorrect_BadPackageVersion.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/OneManifest_OneManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/OneMetadata_OneMetadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemPresent_NoItem.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemrefPresent_NoItemref.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/OneSpine_TwoSpines.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/GuideAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SpineAttributesPresent_MissingAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ToursAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageAllowedChildren_WrongChildren.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/DCMetadataAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ManifestAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SpineAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xhtml_tests/UsesCorrectDtdTest_DtdCorrect.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
--------------------------------------------------------------------------------
/src/utf8-cpp/custom_changes.txt:
--------------------------------------------------------------------------------
1 | core.h was changed to use the boost versions of uint8_t, uint16_t and uint32_t
2 | coming from BoostParts/boost/cstdint.hpp
3 |
4 | This was done to improve code portability, as the original header comments suggested.
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/GuideAllowedChildren_ChildrenOK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemPresent_HasItem.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemrefPresent_HasItemref.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/OneManifest_TwoManifests.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/OneMetadata_TwoMetadatas.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xhtml_tests/UsesCorrectDtdTest_DtdIncorrect.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/GuideAllowedChildren_WrongChildren.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/GuideAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/MetadataAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SpineAllowedChildren_ChildrenOK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ToursAllowedChildren_ChildrenOK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ToursAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/DCMetadataAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SpineAllowedChildren_WrongChildren.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ToursAllowedChildren_WrongChildren.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ManifestAllowedChildren_ChildrenOK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ManifestAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SpineAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/zipios/zipios++/zipios-config.h:
--------------------------------------------------------------------------------
1 | #ifndef ZIPIOS_CONFIG_GEN_H
2 | #define ZIPIOS_CONFIG_GEN_H
3 |
4 | #if defined(_MSC_VER) || defined(__MINGW32__)
5 | # include "zipios-config.w32.h"
6 | #else
7 | # include "zipios-config.unix.h"
8 | #endif
9 |
10 | #endif // ZIPIOS_CONFIG_GEN_H
--------------------------------------------------------------------------------
/src/BoostParts/boost/functional/hash.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright 2005-2009 Daniel James.
3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #include
7 |
8 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ManifestAllowedChildren_WrongChildren.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReferenceTypeValid_BadValue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TourAttributesPresent_MissingAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/concept/detail/concept_undef.hpp:
--------------------------------------------------------------------------------
1 | // Copyright David Abrahams 2006. Distributed under the Boost
2 | // Software License, Version 1.0. (See accompanying
3 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4 | # undef BOOST_concept_typename
5 | # undef BOOST_concept
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_AllOk/subdir/third.css:
--------------------------------------------------------------------------------
1 |
2 | /*
3 |
4 | This comment is part of a test!
5 |
6 | @font-face {
7 | font-family: "Something";
8 | font-weight: bold;
9 | font-style: normal;
10 | src: url(../font_not_in_manifest.ttf);
11 | }
12 |
13 | */
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/MetadataAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TourAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/googlemock/custom_changes.txt:
--------------------------------------------------------------------------------
1 | In /googlemock/gtest/cmake/internal_utils.cmake, this line:
2 |
3 | string(REPLACE "/MD" "-MT" ${flag_var} "${${flag_var}}")
4 |
5 | has been changed to this:
6 |
7 | # S.M.: Commenting out since we always use the DLL CRT
8 | #string(REPLACE "/MD" "-MT" ${flag_var} "${${flag_var}}")
--------------------------------------------------------------------------------
/src/googlemock/gtest/xcode/Config/TestTarget.xcconfig:
--------------------------------------------------------------------------------
1 | //
2 | // TestTarget.xcconfig
3 | //
4 | // These are Test target settings for the gtest framework and examples. It
5 | // is set in the "Based On:" dropdown in the "Target" info dialog.
6 |
7 | PRODUCT_NAME = $(TARGET_NAME)
8 | HEADER_SEARCH_PATHS = ../include
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemrefAttributesPresent_MissingAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReferenceAttributesPresent_MissingAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/config/abi/msvc_suffix.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright John Maddock 2003.
2 | // Use, modification and distribution are subject to the
3 | // Boost Software License, Version 1.0. (See accompanying file
4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #pragma pack(pop)
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemLinearValid_GoodValue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TourAllowedChildren_ChildrenOK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xhtml_tests/SatisfiesXhtmlSchema_XmlError.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | <
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/exception/enable_error_info.hpp:
--------------------------------------------------------------------------------
1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2 |
3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #include
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemReqModsOnlyWithReqNS_RequiredNamespaceNotPresent.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemrefAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TitlePresent_NoTitle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TourAllowedChildren_WrongChildren.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TourAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xhtml_tests/UsesCorrectDtdTest_DtdIncorrectFarLine.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/exception/enable_current_exception.hpp:
--------------------------------------------------------------------------------
1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2 |
3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #include
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/IdentifierPresent_NoIdentifier.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/LanguagePresent_NoLanguage.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/IdsUnique_AllUnique.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReferenceAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SiteAttributesPresent_MissingAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/IdsUnique_AllNotUnique.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemHrefUnique_HrefsUnique.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemrefAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ocf_tests/ContainerListedOpfPresent_HasOpf/META-INF/container.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemHrefUnique_HrefsNotUnique.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemReqModsOnlyWithReqNS_RequiredNamespacePresent.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xhtml_tests/UsesCorrectDtdTest_DtdCorrectWithInternal.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
5 | ]>
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/detail/variadic_footer.hpp:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2013 Vicente J. Botet Escriba
2 | //
3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 |
7 | #if defined BOOST_NO_CXX11_VARIADIC_TEMPLATES
8 |
9 |
10 | #endif
11 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ocf_tests/ContainerListedOpfPresent_DoesntHaveOpf/META-INF/container.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/detail/os_detected.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2013
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_DETAIL_OS_DETECTED
9 | #define BOOST_PREDEF_DETAIL_OS_DETECTED 1
10 | #endif
11 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/typeof/message.hpp:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2005 Arkadiy Vertleyb
2 | // Use, modification and distribution is subject to the Boost Software
3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt)
4 |
5 | #if defined(_MSC_VER) && defined BOOST_TYPEOF_MESSAGES
6 | # pragma message(BOOST_TYPEOF_TEXT)
7 | #endif
8 | #undef BOOST_TYPEOF_TEXT
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemLinearValid_BadValue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/LanguagePresent_HasLanguage.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReferenceAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/detail/comp_detected.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2014
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_DETAIL_COMP_DETECTED
9 | #define BOOST_PREDEF_DETAIL_COMP_DETECTED 1
10 | #endif
11 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SiteAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/detail/platform_detected.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2014
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_DETAIL_PLAT_DETECTED
9 | #define BOOST_PREDEF_DETAIL_PLAT_DETECTED 1
10 | #endif
11 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemrefIdrefValid_IdExists.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ncx_tests/ContentTargetsPresent_AllPresent/test1.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemAttributesPresent_MissingAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemrefIdrefValid_IdDoesNotExist.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TitlePresent_HasTitle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Three Men in a Boat
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/config/abi/borland_suffix.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright John Maddock 2003.
2 | // Use, modification and distribution are subject to the
3 | // Boost Software License, Version 1.0. (See accompanying file
4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | # pragma option pop
7 | #pragma nopushoptwarn
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SiteAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/IdsValid_GoodValue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TypeAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/preprocessed/bcc551/quote.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright Aleksey Gurtovoy 2000-2004
3 | //
4 | // Distributed under the Boost Software License, Version 1.0.
5 | // (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 | //
8 |
9 | // Preprocessed version of "boost/mpl/quote.hpp" header
10 | // -- DO NOT modify by hand!
11 |
12 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/preprocessed/msvc60/quote.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright Aleksey Gurtovoy 2000-2004
3 | //
4 | // Distributed under the Boost Software License, Version 1.0.
5 | // (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 | //
8 |
9 | // Preprocessed version of "boost/mpl/quote.hpp" header
10 | // -- DO NOT modify by hand!
11 |
12 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright Aleksey Gurtovoy 2000-2004
3 | //
4 | // Distributed under the Boost Software License, Version 1.0.
5 | // (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 | //
8 |
9 | // Preprocessed version of "boost/mpl/quote.hpp" header
10 | // -- DO NOT modify by hand!
11 |
12 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/FormatAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/XMetadataAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright Aleksey Gurtovoy 2000-2008
3 | //
4 | // Distributed under the Boost Software License, Version 1.0.
5 | // (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 | //
8 |
9 | // *Preprocessed* version of the main "quote.hpp" header
10 | // -- DO NOT modify by hand!
11 |
12 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/IdsValid_BadValue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/DateAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/MetadataAllowedChildren_DCXChildrenOK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/functional/hash_fwd.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright 2005-2009 Daniel James.
3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #include
7 | #if defined(BOOST_HAS_PRAGMA_ONCE)
8 | #pragma once
9 | #endif
10 |
11 | #include
12 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ocf_tests/ContainerListsOpf_DoesntListOpf.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/FormatAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/IdentifierPresent_HasIdentifier.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | test
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageAllowedChildren_ChildrenOK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/RightsAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SourceAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SubjectAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TitleAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TypeAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/zipios/zipios++/meta-iostreams.h:
--------------------------------------------------------------------------------
1 | #ifndef META_IOSTREAMS_H
2 | #define META_IOSTREAMS_H
3 |
4 | // Includes the different iostream libraries
5 |
6 | #include "zipios++/zipios-config.h"
7 |
8 | #include
9 | #include
10 |
11 | #if defined (HAVE_STD_IOSTREAM) && defined (USE_STD_IOSTREAM)
12 | #include
13 | #else
14 | #include
15 | #endif
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright Aleksey Gurtovoy 2001-2004
3 | //
4 | // Distributed under the Boost Software License, Version 1.0.
5 | // (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 | //
8 |
9 | // Preprocessed version of "boost/mpl/aux_/template_arity.hpp" header
10 | // -- DO NOT modify by hand!
11 |
12 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright Aleksey Gurtovoy 2001-2004
3 | //
4 | // Distributed under the Boost Software License, Version 1.0.
5 | // (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 | //
8 |
9 | // Preprocessed version of "boost/mpl/aux_/template_arity.hpp" header
10 | // -- DO NOT modify by hand!
11 |
12 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/CoverageAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/MetaAttributesPresent_MissingAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PublisherAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/RelationAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/XMetadataAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/preprocessed/plain/template_arity.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright Aleksey Gurtovoy 2001-2004
3 | //
4 | // Distributed under the Boost Software License, Version 1.0.
5 | // (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 | //
8 |
9 | // Preprocessed version of "boost/mpl/aux_/template_arity.hpp" header
10 | // -- DO NOT modify by hand!
11 |
12 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/library/c/_prefix.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2008-2013
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_LIBRARY_C__PREFIX_H
9 | #define BOOST_PREDEF_LIBRARY_C__PREFIX_H
10 |
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/other.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2013
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_OTHER_H
9 | #define BOOST_PREDEF_OTHER_H
10 |
11 | #include
12 | /*#include */
13 |
14 | #endif
15 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/DescriptionAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/IdentifierAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/DateAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/library.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2008-2012
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_LIBRARY_H
9 | #define BOOST_PREDEF_LIBRARY_H
10 |
11 | #include
12 | #include
13 |
14 | #endif
15 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/CoverageAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/MetadataAllowedChildren_DCXChildrenWrong.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/RelationAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/RightsAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SourceAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SubjectAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/TitleAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/IdentifierAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/NcxPresent_NoNcx.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PublisherAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/detail/_exception.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2011-2012
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_DETAIL__EXCEPTION_H
9 | #define BOOST_PREDEF_DETAIL__EXCEPTION_H
10 |
11 | #if defined(__cpluplus)
12 | #include
13 | #endif
14 |
15 | #endif
16 |
--------------------------------------------------------------------------------
/src/FlightCrew-plugin/plugin.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | FlightCrew
4 | validation
5 | KevinH
6 | Use FlightCrew to Validate epub2 ebooks
7 | python2.7
8 | python3.4
9 | 0.9.3
10 | true
11 | true
12 | osx
13 |
14 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/DescriptionAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/detail/endian.hpp:
--------------------------------------------------------------------------------
1 | // Copyright 2013 Rene Rivera
2 | // Distributed under the Boost Software License, Version 1.0. (See accompany-
3 | // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4 |
5 | #ifndef BOOST_DETAIL_ENDIAN_HPP
6 | #define BOOST_DETAIL_ENDIAN_HPP
7 |
8 | // Use the Predef library for the detection of endianess.
9 | #include
10 |
11 | #endif
12 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/CreatorAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/MetaAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/googlemock/msvc/gmock_config.vsprops:
--------------------------------------------------------------------------------
1 |
2 |
7 |
11 |
15 |
16 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/CreatorOrContributorRoleValid_BadValue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/exception_ptr.hpp:
--------------------------------------------------------------------------------
1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2 |
3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #ifndef UUID_FA5836A2CADA11DC8CD47C8555D89593
7 | #define UUID_FA5836A2CADA11DC8CD47C8555D89593
8 |
9 | #include
10 |
11 | #endif
12 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ContributorAttributesPresent_AllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemHrefValid_BadValue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/BoostParts/libs/format/Jamfile:
--------------------------------------------------------------------------------
1 | # Boost.Format Library Jamfile
2 | #
3 | # Copyright (c) 2003 Samuel Krempp
4 | #
5 | # Use, modification, and distribution are subject to the
6 | # Boost Software License, Version 1.0. (See accompanying file
7 | # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 |
9 | project libs/format ;
10 |
11 | # please order by name to ease maintenance
12 | build-project example ;
13 | build-project test ;
14 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/MetaAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_DeclaresOtherUsesOther.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/exception/error_info.hpp:
--------------------------------------------------------------------------------
1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2 |
3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #ifndef UUID_EE7ECCA0433B11E1923E37064924019B
7 | #define UUID_EE7ECCA0433B11E1923E37064924019B
8 | namespace boost { template class error_info; }
9 | #endif
10 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/CreatorAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/detail/_cassert.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2011-2012
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_DETAIL__CASSERT_H
9 | #define BOOST_PREDEF_DETAIL__CASSERT_H
10 |
11 | #if defined(__cpluplus)
12 | #include
13 | #else
14 | #include
15 | #endif
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageUniqueIdentifierValid_IdDoesNotExist.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/PackageUniqueIdentifierValid_IdExists.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/ref.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Fernandes
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_REF_HPP
10 | #define BOOST_REF_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/ref.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ContributorAttributesPresent_NotAllowedAttributes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_AllOk/test2.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_AllOk/test3.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/detail/test.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2011-2012
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_DETAIL_TEST_H
9 | #define BOOST_PREDEF_DETAIL_TEST_H
10 |
11 | #if !defined(BOOST_PREDEF_INTERNAL_GENERATE_TESTS)
12 |
13 | #define BOOST_PREDEF_DECLARE_TEST(x,s)
14 |
15 | #endif
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/swap.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Fernandes
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_SWAP_HPP
10 | #define BOOST_SWAP_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/swap.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/language.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2011-2012
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_LANGUAGE_H
9 | #define BOOST_PREDEF_LANGUAGE_H
10 |
11 | #include
12 | #include
13 | #include
14 |
15 | #endif
16 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_ValidUtf8implicit.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | đšžćč
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_ValidUtf8.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | đšžćč
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/zlib/inffast.h:
--------------------------------------------------------------------------------
1 | /* inffast.h -- header to use inffast.c
2 | * Copyright (C) 1995-2003, 2010 Mark Adler
3 | * For conditions of distribution and use, see copyright notice in zlib.h
4 | */
5 |
6 | /* WARNING: this file should *not* be used by applications. It is
7 | part of the implementation of the compression library and is
8 | subject to change. Applications should only use zlib.h.
9 | */
10 |
11 | void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
12 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/thread.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_THREAD_THREAD_HPP
2 | #define BOOST_THREAD_THREAD_HPP
3 |
4 | // thread.hpp
5 | //
6 | // (C) Copyright 2007-8 Anthony Williams
7 | //
8 | // Distributed under the Boost Software License, Version 1.0. (See
9 | // accompanying file LICENSE_1_0.txt or copy at
10 | // http://www.boost.org/LICENSE_1_0.txt)
11 |
12 | #include
13 | #include
14 |
15 |
16 | #endif
17 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableDocsNotInSpine/test2.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableDocsNotInSpine/test3.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/utility/swap.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Fernandes
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_UTILITY_SWAP_HPP
10 | #define BOOST_UTILITY_SWAP_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/swap.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ManifestResourceNotReachable/test2.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ManifestResourceNotReachable/test3.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableResourceNotInManifest/test2.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableResourceNotInManifest/test3.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xml_tests/UsesUnicode_ValidUtf8lowercase.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | đšžćč
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ocf_tests/ContainerListsOpf_ListsOpf.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/XMetadataAllowedChildren_ChildrenOK.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/atomic.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_ATOMIC_HPP
2 | #define BOOST_ATOMIC_HPP
3 |
4 | // Copyright (c) 2011 Helge Bahmann
5 | //
6 | // Distributed under the Boost Software License, Version 1.0.
7 | // See accompanying file LICENSE_1_0.txt or copy at
8 | // http://www.boost.org/LICENSE_1_0.txt)
9 |
10 | // This header includes all Boost.Atomic public headers
11 |
12 | #include
13 |
14 | #ifdef BOOST_HAS_PRAGMA_ONCE
15 | #pragma once
16 | #endif
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ocf_tests/ContainerSatisfiesSchema_DoesntSatisfySchema.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemFilesPresent_AllFilesPresent/content.opf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ItemFilesPresent_FilesMissing/content.opf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/noncopyable.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Fernandes
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_NONCOPYABLE_HPP
10 | #define BOOST_NONCOPYABLE_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/noncopyable.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function0.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 0
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function1.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 1
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function10.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 10
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function2.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 2
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function3.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 3
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function4.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 4
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function5.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 5
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function6.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 6
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function7.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 7
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function8.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 8
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/function9.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2002-2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 |
10 | #define BOOST_FUNCTION_NUM_ARGS 9
11 | #include
12 | #undef BOOST_FUNCTION_NUM_ARGS
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/csbl/memory/config.hpp:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2013 Vicente J. Botet Escriba
2 | //
3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 | //
6 | // 2013/10 Vicente J. Botet Escriba
7 | // Creation.
8 |
9 | #ifndef BOOST_CSBL_MEMORY_CONFIG_HPP
10 | #define BOOST_CSBL_MEMORY_CONFIG_HPP
11 |
12 | #include
13 |
14 | #include
15 |
16 | #endif // header
17 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/NcxPresent_HasNcx.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/utility/addressof.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Fernandes
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_UTILITY_ADDRESSOF_HPP
10 | #define BOOST_UTILITY_ADDRESSOF_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/addressof.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/utility/enable_if.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Fernandes
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_UTILITY_ENABLE_IF_HPP
10 | #define BOOST_UTILITY_ENABLE_IF_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/enable_if.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ncx_tests/ContentTargetsPresent_AllPresent/test2.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ncx_tests/ContentTargetsPresent_AllPresent/test3.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ncx_tests/ContentTargetsPresent_NotPresent/test2.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/ncx_tests/ContentTargetsPresent_NotPresent/test3.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/checked_delete.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Fernandes
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_CHECKED_DELETE_HPP
10 | #define BOOST_CHECKED_DELETE_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/checked_delete.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/smart_ptr/make_unique.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Joseph Fernandes
3 | * glenfe at live dot com
4 | *
5 | * Distributed under the Boost Software License,
6 | * Version 1.0. (See accompanying file LICENSE_1_0.txt
7 | * or copy at http://boost.org/LICENSE_1_0.txt)
8 | */
9 | #ifndef BOOST_SMART_PTR_MAKE_UNIQUE_HPP
10 | #define BOOST_SMART_PTR_MAKE_UNIQUE_HPP
11 |
12 | #include
13 | #include
14 |
15 | #endif
16 |
--------------------------------------------------------------------------------
/src/BoostParts/libs/thread/tutorial/helloworld.cpp:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2001-2003
2 | // William E. Kempf
3 | //
4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 |
7 | #include
8 | #include
9 |
10 | void helloworld()
11 | {
12 | std::cout << "Hello World!" << std::endl;
13 | }
14 |
15 | int main()
16 | {
17 | boost::thread thrd(&helloworld);
18 | thrd.join();
19 | }
20 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/XMetadataAllowedChildren_WrongChildren.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/filesystem/exception.hpp:
--------------------------------------------------------------------------------
1 | // boost/filesystem/exception.hpp -----------------------------------------------------//
2 |
3 | // Copyright Beman Dawes 2003
4 | // Use, modification, and distribution is subject to the Boost Software
5 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // This header is no longer used. The contents have been moved to path.hpp.
9 | // It is provided so that user code #includes do not have to be changed.
10 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/align/detail/align_cxx11.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2014 Glen Joseph Fernandes
3 | glenfe at live dot com
4 |
5 | Distributed under the Boost Software License,
6 | Version 1.0. (See accompanying file LICENSE_1_0.txt
7 | or copy at http://boost.org/LICENSE_1_0.txt)
8 | */
9 | #ifndef BOOST_ALIGN_DETAIL_ALIGN_CXX11_HPP
10 | #define BOOST_ALIGN_DETAIL_ALIGN_CXX11_HPP
11 |
12 | #include
13 |
14 | namespace boost {
15 | namespace alignment {
16 | using std::align;
17 | }
18 | }
19 |
20 | #endif
21 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/end.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_END_HPP_INCLUDED
3 | #define BOOST_MPL_END_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #include
18 |
19 | #endif // BOOST_MPL_END_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/appveyor_scripts/macdeploy.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | ORIGFILENAME=flightcrew-plugin
3 | COMMIT=$(echo $TRAVIS_COMMIT | cut -c1-7)
4 | DTE=$(echo $(date +%Y-%m-%d_%H_%M_%S) | cut -c1-10)
5 | NEWFILENAME="$ORIGFILENAME-$TRAVIS_BRANCH-$COMMIT-$DTE-mac"
6 | cp "./bin/$ORIGFILENAME" "./bin/$NEWFILENAME"
7 | FILESIZE=$(stat -f%z "./bin/$NEWFILENAME")
8 | echo "Finished rename (size $FILESIZE), starting Google Drive upload"
9 | gdrive --refresh-token $GDRIVE_REFRESH_TOKEN upload --parent $GDRIVE_DIR "./bin/$NEWFILENAME"
10 | echo "Finished Google Drive upload"
11 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/config/platform/amigaos.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright John Maddock 2002.
2 | // Use, modification and distribution are subject to the
3 | // Boost Software License, Version 1.0. (See accompanying file
4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | // See http://www.boost.org for most recent version.
7 |
8 | #define BOOST_PLATFORM "AmigaOS"
9 |
10 | #define BOOST_DISABLE_THREADS
11 | #define BOOST_NO_CWCHAR
12 | #define BOOST_NO_STD_WSTRING
13 | #define BOOST_NO_INTRINSIC_WCHAR_T
14 |
15 |
16 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/next.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_NEXT_HPP_INCLUDED
3 | #define BOOST_MPL_NEXT_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #include
18 |
19 | #endif // BOOST_MPL_NEXT_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/chrono/chrono.hpp:
--------------------------------------------------------------------------------
1 | // chrono.hpp --------------------------------------------------------------//
2 |
3 | // Copyright 2009-2011 Vicente J. Botet Escriba
4 |
5 | // Distributed under the Boost Software License, Version 1.0.
6 | // See http://www.boost.org/LICENSE_1_0.txt
7 |
8 | #ifndef BOOST_CHRONO_CHRONO_HPP
9 | #define BOOST_CHRONO_CHRONO_HPP
10 |
11 | #include
12 | #include
13 | #include
14 |
15 | #endif // BOOST_CHRONO_CHRONO_HPP
16 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/detail/lightweight_test.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Fernandes
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_DETAIL_LIGHTWEIGHT_TEST_HPP
10 | #define BOOST_DETAIL_LIGHTWEIGHT_TEST_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/lightweight_test.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function_types/detail/encoding/aliases_undef.hpp:
--------------------------------------------------------------------------------
1 |
2 | // (C) Copyright Tobias Schwinger
3 | //
4 | // Use modification and distribution are subject to the boost Software License,
5 | // Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).
6 |
7 | //------------------------------------------------------------------------------
8 |
9 | // no include guards, this file is intended for multiple inclusions
10 |
11 | #undef callable_builtin
12 | #undef member
13 | #undef non_member
14 | #undef variadic
15 | #undef non_variadic
16 |
17 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/begin.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_BEGIN_HPP_INCLUDED
3 | #define BOOST_MPL_BEGIN_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #include
18 |
19 | #endif // BOOST_MPL_BEGIN_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/prior.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_PRIOR_HPP_INCLUDED
3 | #define BOOST_MPL_PRIOR_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #include
18 |
19 | #endif // BOOST_MPL_PRIOR_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/src/Xerces/xercesc/util/MsgLoaders/Win32/resource.h:
--------------------------------------------------------------------------------
1 | //{{NO_DEPENDENCIES}}
2 | // Microsoft Developer Studio generated include file.
3 | // Used by Version.rc
4 | //
5 | #define DummyString 1
6 |
7 | // Next default values for new objects
8 | //
9 | #ifdef APSTUDIO_INVOKED
10 | #ifndef APSTUDIO_READONLY_SYMBOLS
11 | #define _APS_NEXT_RESOURCE_VALUE 101
12 | #define _APS_NEXT_COMMAND_VALUE 40001
13 | #define _APS_NEXT_CONTROL_VALUE 1000
14 | #define _APS_NEXT_SYMED_VALUE 101
15 | #endif
16 | #endif
17 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/detail/scoped_enum_emulation.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Andrey Semashev
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_DETAIL_SCOPED_ENUM_EMULATION_HPP
10 | #define BOOST_DETAIL_SCOPED_ENUM_EMULATION_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/scoped_enum.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/iterator_adaptors.hpp:
--------------------------------------------------------------------------------
1 | // Copyright David Abrahams 2004. Distributed under the Boost
2 | // Software License, Version 1.0. (See accompanying
3 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4 |
5 | // See www.boost.org/libs/iterator for documentation.
6 |
7 | #ifndef ITERATOR_ADAPTORS_DWA2004725_HPP
8 | # define ITERATOR_ADAPTORS_DWA2004725_HPP
9 |
10 | #define BOOST_ITERATOR_ADAPTORS_VERSION 0x0200
11 | #include
12 |
13 | #endif // ITERATOR_ADAPTORS_DWA2004725_HPP
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/type_traits/detail/size_t_trait_undef.hpp:
--------------------------------------------------------------------------------
1 |
2 | // NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION
3 |
4 | // Copyright Aleksey Gurtovoy 2002-2004
5 | //
6 | // Distributed under the Boost Software License, Version 1.0.
7 | // (See accompanying file LICENSE_1_0.txt or copy at
8 | // http://www.boost.org/LICENSE_1_0.txt)
9 |
10 | // $Source$
11 | // $Date$
12 | // $Revision$
13 |
14 | #undef BOOST_TT_AUX_SIZE_T_TRAIT_DEF1
15 | #undef BOOST_TT_AUX_SIZE_T_TRAIT_SPEC1
16 | #undef BOOST_TT_AUX_SIZE_T_TRAIT_PARTIAL_SPEC1_1
17 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableDocsNotInSpine/test1.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/BoostParts/libs/thread/meta/libraries.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "key": "thread",
4 | "name": "Thread",
5 | "authors": [
6 | "Anthony Williams",
7 | "Vicente J. Botet Escriba"
8 | ],
9 | "maintainers": [
10 | "Vicente J. Botet Escriba ",
11 | "Niall Douglas "
12 | ],
13 | "description":
14 | "Portable C++ multi-threading. C++11, C++14.",
15 | "std": [ "proposal" ],
16 | "category": [
17 | "Concurrent", "System"
18 | ]
19 | }
20 | ]
21 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ManifestResourceNotReachable/test1.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/config/platform/cray.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright John Maddock 2011.
2 | // Use, modification and distribution are subject to the
3 | // Boost Software License, Version 1.0. (See accompanying file
4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 |
7 | // See http://www.boost.org for most recent version.
8 |
9 | // SGI Irix specific config options:
10 |
11 | #define BOOST_PLATFORM "Cray"
12 |
13 | // boilerplate code:
14 | #define BOOST_HAS_UNISTD_H
15 | #include
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/xhtml_tests/SatisfiesXhtmlSchema_DoesntSatisfySchema.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Chapter 1
6 |
7 |
8 |
9 |
10 |
11 |
12 |

13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/iterator.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright Beman Dawes 2000. Distributed under the Boost
2 | // Software License, Version 1.0. (See accompanying file
3 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4 |
5 | #ifndef BOOST_ITERATOR_HPP
6 | #define BOOST_ITERATOR_HPP
7 |
8 | // This header is obsolete and will be deprecated.
9 |
10 | #include
11 | #include // std::ptrdiff_t
12 |
13 | namespace boost
14 | {
15 |
16 | using std::iterator;
17 |
18 | } // namespace boost
19 |
20 | #endif // BOOST_ITERATOR_HPP
21 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/executor.hpp:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2013 Vicente J. Botet Escriba
2 | //
3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 | //
6 | // 2013/09 Vicente J. Botet Escriba
7 | // Adapt to boost from CCIA C++11 implementation
8 |
9 | #ifndef BOOST_THREAD_EXECUTOR_HPP
10 | #define BOOST_THREAD_EXECUTOR_HPP
11 |
12 | #include
13 | #include
14 |
15 | #endif
16 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableResourceNotInManifest/test4.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/detail/no_exceptions_support.hpp:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2014 Glen Fernandes
3 | *
4 | * Distributed under the Boost Software License, Version 1.0. (See
5 | * accompanying file LICENSE_1_0.txt or copy at
6 | * http://www.boost.org/LICENSE_1_0.txt)
7 | */
8 |
9 | #ifndef BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP
10 | #define BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP
11 |
12 | // The header file at this path is deprecated;
13 | // use boost/core/no_exceptions_support.hpp instead.
14 |
15 | #include
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef/library/c.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2008-2012
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_LIBRARY_C_H
9 | #define BOOST_PREDEF_LIBRARY_C_H
10 |
11 | #include
12 |
13 | #include
14 | #include
15 | #include
16 | #include
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/weak_ptr.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_WEAK_PTR_HPP_INCLUDED
2 | #define BOOST_WEAK_PTR_HPP_INCLUDED
3 |
4 | //
5 | // weak_ptr.hpp
6 | //
7 | // Copyright (c) 2001, 2002, 2003 Peter Dimov
8 | //
9 | // Distributed under the Boost Software License, Version 1.0.
10 | // See accompanying file LICENSE_1_0.txt or copy at
11 | // http://www.boost.org/LICENSE_1_0.txt
12 | //
13 | // See http://www.boost.org/libs/smart_ptr/weak_ptr.htm for documentation.
14 | //
15 |
16 | #include
17 |
18 | #endif // #ifndef BOOST_WEAK_PTR_HPP_INCLUDED
19 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/type.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright David Abrahams 2001.
2 | // Distributed under the Boost Software License, Version 1.0. (See
3 | // accompanying file LICENSE_1_0.txt or copy at
4 | // http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #ifndef BOOST_TYPE_DWA20010120_HPP
7 | # define BOOST_TYPE_DWA20010120_HPP
8 |
9 | namespace boost {
10 |
11 | // Just a simple "type envelope". Useful in various contexts, mostly to work
12 | // around some MSVC deficiencies.
13 | template
14 | struct type {};
15 |
16 | }
17 |
18 | #endif // BOOST_TYPE_DWA20010120_HPP
19 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/make_shared.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_MAKE_SHARED_HPP_INCLUDED
2 | #define BOOST_MAKE_SHARED_HPP_INCLUDED
3 |
4 | // make_shared.hpp
5 | //
6 | // Copyright (c) 2007, 2008 Peter Dimov
7 | //
8 | // Distributed under the Boost Software License, Version 1.0.
9 | // See accompanying file LICENSE_1_0.txt or copy at
10 | // http://www.boost.org/LICENSE_1_0.txt
11 | //
12 | // See http://www.boost.org/libs/smart_ptr/make_shared.html
13 | // for documentation.
14 |
15 | #include
16 |
17 | #endif // #ifndef BOOST_MAKE_SHARED_HPP_INCLUDED
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/predef.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright Rene Rivera 2008-2013
3 | Distributed under the Boost Software License, Version 1.0.
4 | (See accompanying file LICENSE_1_0.txt or copy at
5 | http://www.boost.org/LICENSE_1_0.txt)
6 | */
7 |
8 | #ifndef BOOST_PREDEF_H
9 | #define BOOST_PREDEF_H
10 |
11 | #include
12 | #include
13 | #include
14 | #include
15 | #include
16 | #include
17 | #include
18 |
19 | #endif
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/scoped_ptr.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_SCOPED_PTR_HPP_INCLUDED
2 | #define BOOST_SCOPED_PTR_HPP_INCLUDED
3 |
4 | // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
5 | // Copyright (c) 2001, 2002 Peter Dimov
6 | //
7 | // Distributed under the Boost Software License, Version 1.0. (See
8 | // accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // http://www.boost.org/libs/smart_ptr/scoped_ptr.htm
12 | //
13 |
14 | #include
15 |
16 | #endif // #ifndef BOOST_SCOPED_PTR_HPP_INCLUDED
17 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function_types/detail/pp_tags/cc_tag.hpp:
--------------------------------------------------------------------------------
1 |
2 | // (C) Copyright Tobias Schwinger
3 | //
4 | // Use modification and distribution are subject to the boost Software License,
5 | // Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).
6 |
7 | //------------------------------------------------------------------------------
8 |
9 | // no include guards, this file is intended for multiple inclusions
10 |
11 | struct BOOST_FT_cc_name
12 | {
13 | typedef detail::encode_bits<0,BOOST_FT_cc_id> bits;
14 | typedef detail::constant mask;
15 | };
16 |
17 |
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/scoped_array.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_SCOPED_ARRAY_HPP_INCLUDED
2 | #define BOOST_SCOPED_ARRAY_HPP_INCLUDED
3 |
4 | // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
5 | // Copyright (c) 2001, 2002 Peter Dimov
6 | //
7 | // Distributed under the Boost Software License, Version 1.0. (See
8 | // accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // http://www.boost.org/libs/smart_ptr/scoped_array.htm
12 | //
13 |
14 | #include
15 |
16 | #endif // #ifndef BOOST_SCOPED_ARRAY_HPP_INCLUDED
17 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_ReachableResourceNotInManifest/test1.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/next.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_NEXT)
8 | #define FUSION_INCLUDE_NEXT
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/intrusive/detail/config_end.hpp:
--------------------------------------------------------------------------------
1 | /////////////////////////////////////////////////////////////////////////////
2 | //
3 | // (C) Copyright Ion Gaztanaga 2006-2013
4 | //
5 | // Distributed under the Boost Software License, Version 1.0.
6 | // (See accompanying file LICENSE_1_0.txt or copy at
7 | // http://www.boost.org/LICENSE_1_0.txt)
8 | //
9 | // See http://www.boost.org/libs/intrusive for documentation.
10 | //
11 | /////////////////////////////////////////////////////////////////////////////
12 |
13 | #if defined BOOST_MSVC
14 | #pragma warning (pop)
15 | #endif
16 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/intrusive_ptr.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_INTRUSIVE_PTR_HPP_INCLUDED
2 | #define BOOST_INTRUSIVE_PTR_HPP_INCLUDED
3 |
4 | //
5 | // intrusive_ptr.hpp
6 | //
7 | // Copyright (c) 2001, 2002 Peter Dimov
8 | //
9 | // Distributed under the Boost Software License, Version 1.0.
10 | // See accompanying file LICENSE_1_0.txt or copy at
11 | // http://www.boost.org/LICENSE_1_0.txt
12 | //
13 | // See http://www.boost.org/libs/smart_ptr/intrusive_ptr.html for documentation.
14 | //
15 |
16 | #include
17 |
18 | #endif // #ifndef BOOST_INTRUSIVE_PTR_HPP_INCLUDED
19 |
--------------------------------------------------------------------------------
/src/Xerces/NOTICE:
--------------------------------------------------------------------------------
1 | =========================================================================
2 | == NOTICE file corresponding to section 4(d) of the Apache License, ==
3 | == Version 2.0, in this case for the Apache Xerces distribution. ==
4 | =========================================================================
5 |
6 | This product includes software developed by
7 | The Apache Software Foundation (http://www.apache.org/).
8 |
9 | Portions of this software were originally based on the following:
10 | - software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
11 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/any.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_ANY)
8 | #define FUSION_INCLUDE_ANY
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/cons.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_CONS)
8 | #define FUSION_INCLUDE_CONS
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/type_traits/aligned_storage.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright (C) John Maddock 2005.
3 | // Use, modification and distribution are subject to the Boost Software License,
4 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 | // http://www.boost.org/LICENSE_1_0.txt).
6 | //
7 | // See http://www.boost.org/libs/type_traits for most recent version including documentation.
8 |
9 | #ifndef BOOST_TT_ALIGNED_STORAGE_HPP_INCLUDED
10 | # define BOOST_TT_ALIGNED_STORAGE_HPP_INCLUDED
11 | # include
12 | #endif // BOOST_TT_ALIGNED_STORAGE_HPP_INCLUDED
13 |
14 |
--------------------------------------------------------------------------------
/src/BoostParts/libs/thread/tutorial/helloworld3.cpp:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2001-2003
2 | // William E. Kempf
3 | //
4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 |
7 | #include
8 | #include
9 | #include
10 |
11 | void helloworld(const char* who)
12 | {
13 | std::cout << who << "says, \"Hello World.\"" << std::endl;
14 | }
15 |
16 | int main()
17 | {
18 | boost::thread thrd(boost::bind(&helloworld, "Bob"));
19 | thrd.join();
20 | }
21 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/at_c.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_AT_C)
8 | #define FUSION_INCLUDE_AT_C
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/fold.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_FOLD)
8 | #define FUSION_INCLUDE_FOLD
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/is_view.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_IS_VIEW)
8 | #define FUSION_INCLUDE_IS_VIEW
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/size.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_SIZE)
8 | #define FUSION_INCLUDE_SIZE
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/condition.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_THREAD_CONDITION_HPP
2 | #define BOOST_THREAD_CONDITION_HPP
3 | // (C) Copyright 2007 Anthony Williams
4 | //
5 | // Distributed under the Boost Software License, Version 1.0. (See
6 | // accompanying file LICENSE_1_0.txt or copy at
7 | // http://www.boost.org/LICENSE_1_0.txt)
8 |
9 | #include
10 |
11 | #if defined BOOST_THREAD_PROVIDES_CONDITION
12 |
13 | #include
14 |
15 | namespace boost
16 | {
17 | typedef condition_variable_any condition;
18 | }
19 |
20 | #endif
21 | #endif
22 |
--------------------------------------------------------------------------------
/src/Xerces/xercesc/util/MsgLoaders/MsgCatalog/XMLMsgCat_Ids.hpp:
--------------------------------------------------------------------------------
1 | // ----------------------------------------------------------------
2 | // This file was generated from the XML error message source.
3 | // so do not edit this file directly!!
4 | // ----------------------------------------------------------------
5 |
6 | #include
7 |
8 | XERCES_CPP_NAMESPACE_BEGIN
9 |
10 | const unsigned int CatId_XMLErrs = 1;
11 | const unsigned int CatId_XMLValid = 2;
12 | const unsigned int CatId_XMLExcepts = 3;
13 | const unsigned int CatId_XMLDOMMsg = 4;
14 |
15 | XERCES_CPP_NAMESPACE_END
16 |
17 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/begin.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_BEGIN)
8 | #define FUSION_INCLUDE_BEGIN
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/value_of.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_VALUE_OF)
8 | #define FUSION_INCLUDE_VALUE_OF
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/config/compiler/compaq_cxx.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright John Maddock 2001 - 2003.
2 | // Use, modification and distribution are subject to the
3 | // Boost Software License, Version 1.0. (See accompanying file
4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | // See http://www.boost.org for most recent version.
7 |
8 | // Tru64 C++ compiler setup (now HP):
9 |
10 | #define BOOST_COMPILER "HP Tru64 C++ " BOOST_STRINGIZE(__DECCXX_VER)
11 |
12 | #include "boost/config/compiler/common_edg.hpp"
13 |
14 | //
15 | // versions check:
16 | // Nothing to do here?
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/as_list.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_AS_LIST)
8 | #define FUSION_INCLUDE_AS_LIST
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/intrinsic.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_INTRINSIC)
8 | #define FUSION_INCLUDE_INTRINSIC
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/config/workaround.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_AUX_CONFIG_WORKAROUND_HPP_INCLUDED
3 | #define BOOST_MPL_AUX_CONFIG_WORKAROUND_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2002-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #include
18 |
19 | #endif // BOOST_MPL_AUX_CONFIG_WORKAROUND_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/logical.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LOGICAL_HPP_INCLUDED
3 | #define BOOST_MPL_LOGICAL_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #include
18 | #include
19 | #include
20 |
21 | #endif // BOOST_MPL_LOGICAL_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/locks.hpp:
--------------------------------------------------------------------------------
1 | // Distributed under the Boost Software License, Version 1.0. (See
2 | // accompanying file LICENSE_1_0.txt or copy at
3 | // http://www.boost.org/LICENSE_1_0.txt)
4 | // (C) Copyright 2007 Anthony Williams
5 | // (C) Copyright 2011-2012 Vicente J. Botet Escriba
6 |
7 | #ifndef BOOST_THREAD_LOCKS_HPP
8 | #define BOOST_THREAD_LOCKS_HPP
9 |
10 | #include
11 | #include
12 | #include
13 | #include
14 | #include
15 |
16 | #endif
17 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/tti/detail/ddeftype.hpp:
--------------------------------------------------------------------------------
1 |
2 | // (C) Copyright Edward Diener 2012
3 | // Use, modification and distribution are subject to the Boost Software License,
4 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 | // http://www.boost.org/LICENSE_1_0.txt).
6 |
7 | #if !defined(BOOST_TTI_DETAIL_DEFTYPE_HPP)
8 | #define BOOST_TTI_DETAIL_DEFTYPE_HPP
9 |
10 | namespace boost
11 | {
12 | namespace tti
13 | {
14 | namespace detail
15 | {
16 | struct deftype
17 | {
18 | };
19 | }
20 | }
21 | }
22 |
23 | #endif // BOOST_TTI_DETAIL_DEFTYPE_HPP
24 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/tti/detail/dnotype.hpp:
--------------------------------------------------------------------------------
1 |
2 | // (C) Copyright Edward Diener 2011,2012
3 | // Use, modification and distribution are subject to the Boost Software License,
4 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 | // http://www.boost.org/LICENSE_1_0.txt).
6 |
7 | #if !defined(BOOST_TTI_DETAIL_NOTYPE_HPP)
8 | #define BOOST_TTI_DETAIL_NOTYPE_HPP
9 |
10 | namespace boost
11 | {
12 | namespace tti
13 | {
14 | namespace detail
15 | {
16 | struct notype
17 | {
18 | };
19 | }
20 | }
21 | }
22 |
23 | #endif // BOOST_TTI_DETAIL_NOTYPE_HPP
24 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/ReachabilityAnalysis_AllOk/test1.xhtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | —
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/category_of.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_CATEGORY_OF)
8 | #define FUSION_INCLUDE_CATEGORY_OF
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/for_each.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_FOR_EACH)
8 | #define FUSION_INCLUDE_FOR_EACH
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/single_view.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_SINGLE_VIEW)
8 | #define FUSION_INCLUDE_SINGLE_VIEW
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/tag_of_fwd.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_TAG_OF_FWD)
8 | #define FUSION_INCLUDE_TAG_OF_FWD
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/support/void.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2011 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(BOOST_FUSION_SUPPORT_VOID_20070706_2125)
8 | #define BOOST_FUSION_SUPPORT_VOID_20070706_2125
9 |
10 | namespace boost { namespace fusion
11 | {
12 | struct void_ {};
13 | }}
14 |
15 | #endif
16 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/config/msvc.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_AUX_CONFIG_MSVC_HPP_INCLUDED
3 | #define BOOST_MPL_AUX_CONFIG_MSVC_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2002-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 |
18 | // BOOST_MSVC is defined here:
19 | #include
20 |
21 | #endif // BOOST_MPL_AUX_CONFIG_MSVC_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/less.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LESS_HPP_INCLUDED
3 | #define BOOST_MPL_LESS_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #define AUX778076_OP_NAME less
18 | #define AUX778076_OP_TOKEN <
19 | #include
20 |
21 | #endif // BOOST_MPL_LESS_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/plus.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_PLUS_HPP_INCLUDED
3 | #define BOOST_MPL_PLUS_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #define AUX778076_OP_NAME plus
18 | #define AUX778076_OP_TOKEN +
19 | #include
20 |
21 | #endif // BOOST_MPL_PLUS_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/optional.hpp:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2003, Fernando Luis Cacciola Carballal.
2 | //
3 | // Use, modification, and distribution is subject to the Boost Software
4 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 | // http://www.boost.org/LICENSE_1_0.txt)
6 | //
7 | // See http://www.boost.org/libs/optional for documentation.
8 | //
9 | // You are welcome to contact the author at:
10 | // fernando_cacciola@hotmail.com
11 | //
12 | #ifndef BOOST_OPTIONAL_FLC_19NOV2002_HPP
13 | #define BOOST_OPTIONAL_FLC_19NOV2002_HPP
14 |
15 | #include "boost/optional/optional.hpp"
16 |
17 | #endif
18 |
19 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/thread_pool.hpp:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2013 Vicente J. Botet Escriba
2 | //
3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 | //
6 | // 2013/09 Vicente J. Botet Escriba
7 | // Adapt to boost from CCIA C++11 implementation
8 | // first implementation of a simple pool thread using a vector of threads and a sync_queue.
9 |
10 | #ifndef BOOST_THREAD_THREAD_POOL_HPP
11 | #define BOOST_THREAD_THREAD_POOL_HPP
12 |
13 | #include
14 |
15 | #endif
16 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/interprocess/detail/config_external_end.hpp:
--------------------------------------------------------------------------------
1 | //////////////////////////////////////////////////////////////////////////////
2 | //
3 | // (C) Copyright Ion Gaztanaga 2012-2012. Distributed under the Boost
4 | // Software License, Version 1.0. (See accompanying file
5 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | //
7 | // See http://www.boost.org/libs/interprocess for documentation.
8 | //
9 | //////////////////////////////////////////////////////////////////////////////
10 | #if defined(__GNUC__) && ((__GNUC__*100 + __GNUC_MINOR__) >= 406)
11 | # pragma GCC diagnostic pop
12 | #endif
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/limits/map.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LIMITS_MAP_HPP_INCLUDED
3 | #define BOOST_MPL_LIMITS_MAP_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #if !defined(BOOST_MPL_LIMIT_MAP_SIZE)
18 | # define BOOST_MPL_LIMIT_MAP_SIZE 20
19 | #endif
20 |
21 | #endif // BOOST_MPL_LIMITS_MAP_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/minus.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_MINUS_HPP_INCLUDED
3 | #define BOOST_MPL_MINUS_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #define AUX778076_OP_NAME minus
18 | #define AUX778076_OP_TOKEN -
19 | #include
20 |
21 | #endif // BOOST_MPL_MINUS_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/times.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_TIMES_HPP_INCLUDED
3 | #define BOOST_MPL_TIMES_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #define AUX778076_OP_NAME times
18 | #define AUX778076_OP_TOKEN *
19 | #include
20 |
21 | #endif // BOOST_MPL_TIMES_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/range/iterator_range.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Range library
2 | //
3 | // Copyright Neil Groves 2009.
4 | // Use, modification and distribution is subject to the Boost Software
5 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 | //
8 | // For more information, see http://www.boost.org/libs/range/
9 | //
10 | #ifndef BOOST_RANGE_ITERATOR_RANGE_HPP_INCLUDED
11 | #define BOOST_RANGE_ITERATOR_RANGE_HPP_INCLUDED
12 |
13 | #include "boost/range/iterator_range_core.hpp"
14 | #include "boost/range/iterator_range_io.hpp"
15 |
16 | #endif // include guard
17 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/date_time.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_DATE_TIME_ALL_HPP___
2 | #define BOOST_DATE_TIME_ALL_HPP___
3 |
4 | /* Copyright (c) 2006 CrystalClear Software, Inc.
5 | * Use, modification and distribution is subject to the
6 | * Boost Software License, Version 1.0. (See accompanying
7 | * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
8 | * Author: Jeff Garland
9 | * $Date$
10 | */
11 |
12 | // See www.boost.org/libs/date_time for documentation.
13 |
14 | //gregorian and posix time included by indirectly
15 | #include "boost/date_time/local_time/local_time.hpp"
16 |
17 | #endif // BOOST_DATE_TIME_ALL_HPP___
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/is_segmented.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2011 Eric Niebler
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(BOOST_FUSION_INCLUDE_IS_SEGMENTED)
8 | #define BOOST_FUSION_INCLUDE_IS_SEGMENTED
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/iterator_base.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_ITERATOR_BASE)
8 | #define FUSION_INCLUDE_ITERATOR_BASE
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/transform.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2007 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_INCLUDE_TRANSFORM)
8 | #define FUSION_INCLUDE_TRANSFORM
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/sequence/intrinsic/at_c.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2011 Joel de Guzman
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 | #if !defined(FUSION_AT_C_08252008_0308)
8 | #define FUSION_AT_C_08252008_0308
9 |
10 | #include
11 | #include
12 |
13 | #endif
14 |
15 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/config/intel.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_AUX_CONFIG_INTEL_HPP_INCLUDED
3 | #define BOOST_MPL_AUX_CONFIG_INTEL_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 |
18 | // BOOST_INTEL_CXX_VERSION is defined here:
19 | #include
20 |
21 | #endif // BOOST_MPL_AUX_CONFIG_INTEL_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/int.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_INT_HPP_INCLUDED
3 | #define BOOST_MPL_INT_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #include
18 |
19 | #define AUX_WRAPPER_VALUE_TYPE int
20 | #include
21 |
22 | #endif // BOOST_MPL_INT_HPP_INCLUDED
23 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/limits/list.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LIMITS_LIST_HPP_INCLUDED
3 | #define BOOST_MPL_LIMITS_LIST_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #if !defined(BOOST_MPL_LIMIT_LIST_SIZE)
18 | # define BOOST_MPL_LIMIT_LIST_SIZE 20
19 | #endif
20 |
21 | #endif // BOOST_MPL_LIMITS_LIST_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/greater.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_GREATER_HPP_INCLUDED
3 | #define BOOST_MPL_GREATER_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #define AUX778076_OP_NAME greater
18 | #define AUX778076_OP_TOKEN >
19 | #include
20 |
21 | #endif // BOOST_MPL_GREATER_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/detail/work.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright 2013 Vicente J. Botet Escriba
2 | //
3 | // Distributed under the Boost Software License, Version 1.0. (See
4 | // accompanying file LICENSE_1_0.txt or copy at
5 | // http://www.boost.org/LICENSE_1_0.txt)
6 |
7 | #ifndef BOOST_THREAD_DETAIL_WORK_HPP
8 | #define BOOST_THREAD_DETAIL_WORK_HPP
9 |
10 |
11 | #include
12 |
13 | namespace boost
14 | {
15 | namespace thread_detail
16 | {
17 |
18 | typedef detail::nullary_function work;
19 | }
20 |
21 | } // namespace boost
22 |
23 | #endif // BOOST_THREAD_DETAIL_MEMORY_HPP
24 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/executors/work.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright 2013,2014 Vicente J. Botet Escriba
2 | //
3 | // Distributed under the Boost Software License, Version 1.0. (See
4 | // accompanying file LICENSE_1_0.txt or copy at
5 | // http://www.boost.org/LICENSE_1_0.txt)
6 |
7 | #ifndef BOOST_THREAD_EXECUTORS_WORK_HPP
8 | #define BOOST_THREAD_EXECUTORS_WORK_HPP
9 |
10 |
11 | #include
12 |
13 | namespace boost
14 | {
15 | namespace executors
16 | {
17 | typedef detail::nullary_function work;
18 | }
19 | } // namespace boost
20 |
21 | #endif // BOOST_THREAD_EXECUTORS_WORK_HPP
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/detail/iterator.hpp:
--------------------------------------------------------------------------------
1 | // (C) Copyright David Abrahams 2002.
2 | // Distributed under the Boost Software License, Version 1.0. (See
3 | // accompanying file LICENSE_1_0.txt or copy at
4 | // http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #ifndef ITERATOR_DWA122600_HPP_
7 | #define ITERATOR_DWA122600_HPP_
8 |
9 | // This header is obsolete and will be deprecated.
10 |
11 | #include
12 |
13 | namespace boost
14 | {
15 |
16 | namespace detail
17 | {
18 |
19 | using std::iterator_traits;
20 | using std::distance;
21 |
22 | } // namespace detail
23 |
24 | } // namespace boost
25 |
26 | #endif // ITERATOR_DWA122600_HPP_
27 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/enable_shared_from_this.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_ENABLE_SHARED_FROM_THIS_HPP_INCLUDED
2 | #define BOOST_ENABLE_SHARED_FROM_THIS_HPP_INCLUDED
3 |
4 | //
5 | // enable_shared_from_this.hpp
6 | //
7 | // Copyright (c) 2002 Peter Dimov
8 | //
9 | // Distributed under the Boost Software License, Version 1.0.
10 | // See accompanying file LICENSE_1_0.txt or copy at
11 | // http://www.boost.org/LICENSE_1_0.txt
12 | //
13 | // http://www.boost.org/libs/smart_ptr/enable_shared_from_this.html
14 | //
15 |
16 | #include
17 |
18 | #endif // #ifndef BOOST_ENABLE_SHARED_FROM_THIS_HPP_INCLUDED
19 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/function/detail/function_iterate.hpp:
--------------------------------------------------------------------------------
1 | // Boost.Function library
2 |
3 | // Copyright Douglas Gregor 2003. Use, modification and
4 | // distribution is subject to the Boost Software License, Version
5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 | // http://www.boost.org/LICENSE_1_0.txt)
7 |
8 | // For more information, see http://www.boost.org
9 | #if !defined(BOOST_PP_IS_ITERATING)
10 | # error Boost.Function - do not include this file!
11 | #endif
12 |
13 | #define BOOST_FUNCTION_NUM_ARGS BOOST_PP_ITERATION()
14 | #include
15 | #undef BOOST_FUNCTION_NUM_ARGS
16 |
17 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/equal_to.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_EQUAL_TO_HPP_INCLUDED
3 | #define BOOST_MPL_EQUAL_TO_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #define AUX778076_OP_NAME equal_to
18 | #define AUX778076_OP_TOKEN ==
19 | #include
20 |
21 | #endif // BOOST_MPL_EQUAL_TO_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/limits/vector.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LIMITS_VECTOR_HPP_INCLUDED
3 | #define BOOST_MPL_LIMITS_VECTOR_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #if !defined(BOOST_MPL_LIMIT_VECTOR_SIZE)
18 | # define BOOST_MPL_LIMIT_VECTOR_SIZE 20
19 | #endif
20 |
21 | #endif // BOOST_MPL_LIMITS_VECTOR_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/long.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LONG_HPP_INCLUDED
3 | #define BOOST_MPL_LONG_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #include
18 |
19 | #define AUX_WRAPPER_VALUE_TYPE long
20 | #include
21 |
22 | #endif // BOOST_MPL_LONG_HPP_INCLUDED
23 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/shared_ptr.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_SHARED_PTR_HPP_INCLUDED
2 | #define BOOST_SHARED_PTR_HPP_INCLUDED
3 |
4 | //
5 | // shared_ptr.hpp
6 | //
7 | // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
8 | // Copyright (c) 2001-2008 Peter Dimov
9 | //
10 | // Distributed under the Boost Software License, Version 1.0. (See
11 | // accompanying file LICENSE_1_0.txt or copy at
12 | // http://www.boost.org/LICENSE_1_0.txt)
13 | //
14 | // See http://www.boost.org/libs/smart_ptr/shared_ptr.htm for documentation.
15 | //
16 |
17 | #include
18 |
19 | #endif // #ifndef BOOST_SHARED_PTR_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/aux_/config/use_preprocessed.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_AUX_CONFIG_USE_PREPROCESSED_HPP_INCLUDED
3 | #define BOOST_MPL_AUX_CONFIG_USE_PREPROCESSED_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | // #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
18 |
19 | #endif // BOOST_MPL_AUX_CONFIG_USE_PREPROCESSED_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/preprocessor/facilities/empty.hpp:
--------------------------------------------------------------------------------
1 | # /* Copyright (C) 2001
2 | # * Housemarque Oy
3 | # * http://www.housemarque.com
4 | # *
5 | # * Distributed under the Boost Software License, Version 1.0. (See
6 | # * accompanying file LICENSE_1_0.txt or copy at
7 | # * http://www.boost.org/LICENSE_1_0.txt)
8 | # */
9 | #
10 | # /* Revised by Paul Mensonides (2002) */
11 | #
12 | # /* See http://www.boost.org for most recent version. */
13 | #
14 | # ifndef BOOST_PREPROCESSOR_FACILITIES_EMPTY_HPP
15 | # define BOOST_PREPROCESSOR_FACILITIES_EMPTY_HPP
16 | #
17 | # /* BOOST_PP_EMPTY */
18 | #
19 | # define BOOST_PP_EMPTY()
20 | #
21 | # endif
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/less_equal.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LESS_EQUAL_HPP_INCLUDED
3 | #define BOOST_MPL_LESS_EQUAL_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #define AUX778076_OP_NAME less_equal
18 | #define AUX778076_OP_TOKEN <=
19 | #include
20 |
21 | #endif // BOOST_MPL_LESS_EQUAL_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/limits/arity.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LIMITS_ARITY_HPP_INCLUDED
3 | #define BOOST_MPL_LIMITS_ARITY_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #if !defined(BOOST_MPL_LIMIT_METAFUNCTION_ARITY)
18 | # define BOOST_MPL_LIMIT_METAFUNCTION_ARITY 5
19 | #endif
20 |
21 | #endif // BOOST_MPL_LIMITS_ARITY_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/limits/unrolling.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LIMITS_UNROLLING_HPP_INCLUDED
3 | #define BOOST_MPL_LIMITS_UNROLLING_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #if !defined(BOOST_MPL_LIMIT_UNROLLING)
18 | # define BOOST_MPL_LIMIT_UNROLLING 4
19 | #endif
20 |
21 | #endif // BOOST_MPL_LIMITS_UNROLLING_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/preprocessor/punctuation/comma.hpp:
--------------------------------------------------------------------------------
1 | # /* Copyright (C) 2001
2 | # * Housemarque Oy
3 | # * http://www.housemarque.com
4 | # *
5 | # * Distributed under the Boost Software License, Version 1.0. (See
6 | # * accompanying file LICENSE_1_0.txt or copy at
7 | # * http://www.boost.org/LICENSE_1_0.txt)
8 | # */
9 | #
10 | # /* Revised by Paul Mensonides (2002) */
11 | #
12 | # /* See http://www.boost.org for most recent version. */
13 | #
14 | # ifndef BOOST_PREPROCESSOR_PUNCTUATION_COMMA_HPP
15 | # define BOOST_PREPROCESSOR_PUNCTUATION_COMMA_HPP
16 | #
17 | # /* BOOST_PP_COMMA */
18 | #
19 | # define BOOST_PP_COMMA() ,
20 | #
21 | # endif
22 |
--------------------------------------------------------------------------------
/src/BoostParts/libs/format/benchmark/Jamfile:
--------------------------------------------------------------------------------
1 | # Boost.Bind Library test Jamfile
2 | #
3 | # Copyright (c) 2003 Samuel Krempp
4 | #
5 | # Distributed under the Boost Software License, Version 1.0.
6 | # See www.boost.org/LICENSE_1_0.txt
7 |
8 | exe bench_format_no_locale
9 | : bench_format.cpp
10 | : BOOST_NO_STD_LOCALE no_locale
11 | ;
12 |
13 | exe bench_format_normal
14 | : bench_format.cpp
15 | : normal
16 | ;
17 |
18 | exe bench_format_no_reuse_stream
19 | : bench_format.cpp
20 | : alts BOOST_FORMAT_NO_OSS_MEMBER no_reuse_stream
21 | ;
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/exception/detail/attribute_noreturn.hpp:
--------------------------------------------------------------------------------
1 | //Copyright (c) 2009 Emil Dotchevski and Reverge Studios, Inc.
2 |
3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #ifndef UUID_61531AB0680611DEADD5846855D89593
7 | #define UUID_61531AB0680611DEADD5846855D89593
8 |
9 | #if defined(_MSC_VER)
10 | #define BOOST_ATTRIBUTE_NORETURN __declspec(noreturn)
11 | #elif defined(__GNUC__)
12 | #define BOOST_ATTRIBUTE_NORETURN __attribute__((noreturn))
13 | #else
14 | #define BOOST_ATTRIBUTE_NORETURN
15 | #endif
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/exception/errinfo_at_line.hpp:
--------------------------------------------------------------------------------
1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2 |
3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #ifndef UUID_E7255CE26C1211DE85800C9155D89593
7 | #define UUID_E7255CE26C1211DE85800C9155D89593
8 |
9 | namespace
10 | boost
11 | {
12 | template class error_info;
13 |
14 | //Use with parsing errors exceptions, for example in a XML file parser.
15 | typedef error_info errinfo_at_line;
16 | }
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/list/aux_/tag.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_LIST_AUX_TAG_HPP_INCLUDED
3 | #define BOOST_MPL_LIST_AUX_TAG_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | namespace boost { namespace mpl { namespace aux {
18 |
19 | struct list_tag;
20 | struct l_iter_tag;
21 |
22 | }}}
23 |
24 | #endif // BOOST_MPL_LIST_AUX_TAG_HPP_INCLUDED
25 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/shared_array.hpp:
--------------------------------------------------------------------------------
1 | #ifndef BOOST_SHARED_ARRAY_HPP_INCLUDED
2 | #define BOOST_SHARED_ARRAY_HPP_INCLUDED
3 |
4 | //
5 | // shared_array.hpp
6 | //
7 | // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
8 | // Copyright (c) 2001, 2002 Peter Dimov
9 | //
10 | // Distributed under the Boost Software License, Version 1.0. (See
11 | // accompanying file LICENSE_1_0.txt or copy at
12 | // http://www.boost.org/LICENSE_1_0.txt)
13 | //
14 | // See http://www.boost.org/libs/smart_ptr/shared_array.htm for documentation.
15 | //
16 |
17 | #include
18 |
19 | #endif // #ifndef BOOST_SHARED_ARRAY_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/detail/variadic_header.hpp:
--------------------------------------------------------------------------------
1 | // Copyright (C) 2013 Vicente J. Botet Escriba
2 | //
3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #include
7 |
8 | //#if defined BOOST_NO_CXX11_VARIADIC_TEMPLATES
9 |
10 | #include
11 | #include
12 | #include
13 |
14 | #ifndef BOOST_THREAD_MAX_ARGS
15 | #define BOOST_THREAD_MAX_ARGS 9
16 | #endif
17 |
18 | //#endif
19 |
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/chrono/clock_string.hpp:
--------------------------------------------------------------------------------
1 | //
2 | // (C) Copyright 2010-2011 Vicente J. Botet Escriba
3 | // Use, modification and distribution are subject to the Boost Software License,
4 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 | // http://www.boost.org/LICENSE_1_0.txt).
6 | //
7 |
8 | #ifndef BOOST_CHRONO_CLOCK_STRING_HPP
9 | #define BOOST_CHRONO_CLOCK_STRING_HPP
10 |
11 | #include
12 |
13 | namespace boost
14 | {
15 | namespace chrono
16 | {
17 |
18 | template
19 | struct clock_string;
20 |
21 | } // chrono
22 |
23 | } // boost
24 |
25 | #endif // BOOST_CHRONO_CLOCK_STRING_HPP
26 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/fusion/include/reverse_fold.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2010 Christopher Schmidt
3 |
4 | Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 | ==============================================================================*/
7 |
8 | #ifndef BOOST_FUSION_INCLUDE_REVERSE_FOLD_HPP
9 | #define BOOST_FUSION_INCLUDE_REVERSE_FOLD_HPP
10 |
11 | #include
12 | #include
13 |
14 | #endif
15 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/not_equal_to.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_NOT_EQUAL_TO_HPP_INCLUDED
3 | #define BOOST_MPL_NOT_EQUAL_TO_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #define AUX778076_OP_NAME not_equal_to
18 | #define AUX778076_OP_TOKEN !=
19 | #include
20 |
21 | #endif // BOOST_MPL_NOT_EQUAL_TO_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/spirit/include/classic_chset.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2008 Joel de Guzman
3 | Copyright (c) 2001-2008 Hartmut Kaiser
4 | http://spirit.sourceforge.net/
5 |
6 | Distributed under the Boost Software License, Version 1.0. (See accompanying
7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 | =============================================================================*/
9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_CHSET
10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_CHSET
11 | #include
12 | #endif
13 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/unordered/detail/fwd.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright (C) 2008-2011 Daniel James.
3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #ifndef BOOST_UNORDERED_FWD_HPP_INCLUDED
7 | #define BOOST_UNORDERED_FWD_HPP_INCLUDED
8 |
9 | #include
10 | #if defined(BOOST_HAS_PRAGMA_ONCE)
11 | #pragma once
12 | #endif
13 |
14 | namespace boost
15 | {
16 | namespace unordered
17 | {
18 | struct piecewise_construct_t {};
19 | const piecewise_construct_t piecewise_construct = piecewise_construct_t();
20 | }
21 | }
22 |
23 | #endif
24 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SpineTocValid_GoodValue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/greater_equal.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_GREATER_EQUAL_HPP_INCLUDED
3 | #define BOOST_MPL_GREATER_EQUAL_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | #define AUX778076_OP_NAME greater_equal
18 | #define AUX778076_OP_TOKEN >=
19 | #include
20 |
21 | #endif // BOOST_MPL_GREATER_EQUAL_HPP_INCLUDED
22 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/spirit/include/classic_rule.hpp:
--------------------------------------------------------------------------------
1 | /*=============================================================================
2 | Copyright (c) 2001-2008 Joel de Guzman
3 | Copyright (c) 2001-2008 Hartmut Kaiser
4 | http://spirit.sourceforge.net/
5 |
6 | Distributed under the Boost Software License, Version 1.0. (See accompanying
7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 | =============================================================================*/
9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_RULE
10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_RULE
11 | #include
12 | #endif
13 |
--------------------------------------------------------------------------------
/src/FlightCrew/tests/test_data/opf_tests/SpineTocValid_BadValue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/googlemock/gtest/xcode/Config/FrameworkTarget.xcconfig:
--------------------------------------------------------------------------------
1 | //
2 | // FrameworkTarget.xcconfig
3 | //
4 | // These are Framework target settings for the gtest framework and examples. It
5 | // is set in the "Based On:" dropdown in the "Target" info dialog.
6 | // This file is based on the Xcode Configuration files in:
7 | // http://code.google.com/p/google-toolbox-for-mac/
8 | //
9 |
10 | // Dynamic libs need to be position independent
11 | GCC_DYNAMIC_NO_PIC = NO
12 |
13 | // Dynamic libs should not have their external symbols stripped.
14 | STRIP_STYLE = non-global
15 |
16 | // Let the user install by specifying the $DSTROOT with xcodebuild
17 | SKIP_INSTALL = NO
18 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/exception/errinfo_file_handle.hpp:
--------------------------------------------------------------------------------
1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2 |
3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying
4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 |
6 | #ifndef UUID_F79E6EE26C1211DEB26E929155D89593
7 | #define UUID_F79E6EE26C1211DEB26E929155D89593
8 |
9 | #include
10 |
11 | namespace
12 | boost
13 | {
14 | template class weak_ptr;
15 | template class error_info;
16 |
17 | typedef error_info > errinfo_file_handle;
18 | }
19 |
20 | #endif
21 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/at_fwd.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_AT_FWD_HPP_INCLUDED
3 | #define BOOST_MPL_AT_FWD_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | namespace boost { namespace mpl {
18 |
19 | template< typename Tag > struct at_impl;
20 | template< typename Sequence, typename N > struct at;
21 |
22 | }}
23 |
24 | #endif // BOOST_MPL_AT_FWD_HPP_INCLUDED
25 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/back_fwd.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_BACK_FWD_HPP_INCLUDED
3 | #define BOOST_MPL_BACK_FWD_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | namespace boost { namespace mpl {
18 |
19 | template< typename Tag > struct back_impl;
20 | template< typename Sequence > struct back;
21 |
22 | }}
23 |
24 | #endif // BOOST_MPL_BACK_FWD_HPP_INCLUDED
25 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/map/aux_/tag.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_MAP_AUX_TAG_HPP_INCLUDED
3 | #define BOOST_MPL_MAP_AUX_TAG_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2003-2004
6 | // Copyright David Abrahams 2003-2004
7 | //
8 | // Distributed under the Boost Software License, Version 1.0.
9 | // (See accompanying file LICENSE_1_0.txt or copy at
10 | // http://www.boost.org/LICENSE_1_0.txt)
11 | //
12 | // See http://www.boost.org/libs/mpl for documentation.
13 |
14 | // $Id$
15 | // $Date$
16 | // $Revision$
17 |
18 | namespace boost { namespace mpl { namespace aux {
19 |
20 | struct map_tag;
21 |
22 | }}}
23 |
24 | #endif // BOOST_MPL_MAP_AUX_TAG_HPP_INCLUDED
25 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/mpl/size_fwd.hpp:
--------------------------------------------------------------------------------
1 |
2 | #ifndef BOOST_MPL_SIZE_FWD_HPP_INCLUDED
3 | #define BOOST_MPL_SIZE_FWD_HPP_INCLUDED
4 |
5 | // Copyright Aleksey Gurtovoy 2000-2004
6 | //
7 | // Distributed under the Boost Software License, Version 1.0.
8 | // (See accompanying file LICENSE_1_0.txt or copy at
9 | // http://www.boost.org/LICENSE_1_0.txt)
10 | //
11 | // See http://www.boost.org/libs/mpl for documentation.
12 |
13 | // $Id$
14 | // $Date$
15 | // $Revision$
16 |
17 | namespace boost { namespace mpl {
18 |
19 | template< typename Tag > struct size_impl;
20 | template< typename Sequence > struct size;
21 |
22 | }}
23 |
24 | #endif // BOOST_MPL_SIZE_FWD_HPP_INCLUDED
25 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/thread/cv_status.hpp:
--------------------------------------------------------------------------------
1 | // cv_status.hpp
2 | //
3 | // Copyright (C) 2011 Vicente J. Botet Escriba
4 | //
5 | // Distributed under the Boost Software License, Version 1.0. (See
6 | // accompanying file LICENSE_1_0.txt or copy at
7 | // http://www.boost.org/LICENSE_1_0.txt)
8 |
9 | #ifndef BOOST_THREAD_CV_STATUS_HPP
10 | #define BOOST_THREAD_CV_STATUS_HPP
11 |
12 | #include
13 |
14 | namespace boost
15 | {
16 |
17 | // enum class cv_status;
18 | BOOST_SCOPED_ENUM_DECLARE_BEGIN(cv_status)
19 | {
20 | no_timeout,
21 | timeout
22 | }
23 | BOOST_SCOPED_ENUM_DECLARE_END(cv_status)
24 | }
25 |
26 | #endif // header
27 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/unordered_map.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright (C) 2003-2004 Jeremy B. Maitin-Shepard.
3 | // Copyright (C) 2005-2008 Daniel James.
4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 |
7 | // See http://www.boost.org/libs/unordered for documentation
8 |
9 | #ifndef BOOST_UNORDERED_MAP_HPP_INCLUDED
10 | #define BOOST_UNORDERED_MAP_HPP_INCLUDED
11 |
12 | #include
13 | #if defined(BOOST_HAS_PRAGMA_ONCE)
14 | #pragma once
15 | #endif
16 |
17 | #include
18 |
19 | #endif // BOOST_UNORDERED_MAP_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/unordered_set.hpp:
--------------------------------------------------------------------------------
1 |
2 | // Copyright (C) 2003-2004 Jeremy B. Maitin-Shepard.
3 | // Copyright (C) 2005-2008 Daniel James.
4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 |
7 | // See http://www.boost.org/libs/unordered for documentation
8 |
9 | #ifndef BOOST_UNORDERED_SET_HPP_INCLUDED
10 | #define BOOST_UNORDERED_SET_HPP_INCLUDED
11 |
12 | #include
13 | #if defined(BOOST_HAS_PRAGMA_ONCE)
14 | #pragma once
15 | #endif
16 |
17 | #include
18 |
19 | #endif // BOOST_UNORDERED_SET_HPP_INCLUDED
20 |
--------------------------------------------------------------------------------
/src/BoostParts/boost/concept/detail/backward_compatibility.hpp:
--------------------------------------------------------------------------------
1 | // Copyright David Abrahams 2009. Distributed under the Boost
2 | // Software License, Version 1.0. (See accompanying
3 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4 | #ifndef BOOST_CONCEPT_BACKWARD_COMPATIBILITY_DWA200968_HPP
5 | # define BOOST_CONCEPT_BACKWARD_COMPATIBILITY_DWA200968_HPP
6 |
7 | namespace boost
8 | {
9 | namespace concepts {}
10 |
11 | # if defined(BOOST_HAS_CONCEPTS) && !defined(BOOST_CONCEPT_NO_BACKWARD_KEYWORD)
12 | namespace concept = concepts;
13 | # endif
14 | } // namespace boost::concept
15 |
16 | #endif // BOOST_CONCEPT_BACKWARD_COMPATIBILITY_DWA200968_HPP
17 |
--------------------------------------------------------------------------------