⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmlrefinfo.hpp

📁 开源xml解析库,非常有名
💻 HPP
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements.  See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License.  You may obtain a copy of the License at *  *      http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *//* * $Id: XMLRefInfo.hpp 568078 2007-08-21 11:43:25Z amassari $ */#if !defined(XMLIDREFINFO_HPP)#define XMLIDREFINFO_HPP#include <xercesc/util/XMemory.hpp>#include <xercesc/util/PlatformUtils.hpp>#include <xercesc/util/XMLString.hpp>#include <xercesc/internal/XSerializable.hpp>XERCES_CPP_NAMESPACE_BEGIN/** *  This class provides a simple means to track ID Ref usage. Since id/idref *  semamatics are part of XML 1.0, any validator will likely to be able to *  track them. Instances of this class represent a reference and two markers, *  one for its being declared and another for its being used. When the *  document is done, one can look at each instance and, if used but not *  declared, its an error. * *  The getKey() method allows it to support keyed collection semantics. It *  returns the referenced name, so these objects will be stored via the hash *  of the name. This name will either be a standard QName if namespaces are *  not enabled/supported by the validator, or it will be in the form *  {url}name if namespace processing is enabled. */class XMLPARSER_EXPORT XMLRefInfo : public XSerializable, public XMemory{public :    // -----------------------------------------------------------------------    //  Constructors and Destructor    // -----------------------------------------------------------------------    /** @name Constructor */    //@{    XMLRefInfo    (        const   XMLCh* const   refName        , const bool           fDeclared = false        , const bool           fUsed = false        , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager    );    //@}    /** @name Destructor */    //@{    ~XMLRefInfo();    //@}    // -----------------------------------------------------------------------    //  Getter methods    // -----------------------------------------------------------------------    bool getDeclared() const;    const XMLCh* getRefName() const;    bool getUsed() const;    // -----------------------------------------------------------------------    //  Setter methods    // -----------------------------------------------------------------------    void setDeclared(const bool newValue);    void setUsed(const bool newValue);    /***     * Support for Serialization/De-serialization     ***/    DECL_XSERIALIZABLE(XMLRefInfo)    XMLRefInfo    (      MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager    );private :    // -----------------------------------------------------------------------    //  Unimplemented constructors and operators    // -----------------------------------------------------------------------    XMLRefInfo(const XMLRefInfo&);    XMLRefInfo& operator=(XMLRefInfo&);    // -----------------------------------------------------------------------    //  Private data members    //    //  fDeclared    //      The name was declared somewhere as an ID attribute.    //    //  fRefName    //      The name of the ref that this object represents. This is not a    //      name of the attribute, but of the value of an ID or IDREF attr    //      in content.    //    //  fUsed    //      The name was used somewhere in an IDREF/IDREFS attribute. If this    //      is true, but fDeclared is false, then the ref does not refer to    //      a declared ID.    // -----------------------------------------------------------------------    bool        fDeclared;    bool        fUsed;    XMLCh*      fRefName;    MemoryManager* fMemoryManager;};// ---------------------------------------------------------------------------//  XMLRefInfo: Constructors and Destructor// ---------------------------------------------------------------------------inline XMLRefInfo::XMLRefInfo( const XMLCh* const   refName                             , const bool           declared                             , const bool           used                             , MemoryManager* const manager) :    fDeclared(declared)    , fUsed(used)    , fRefName(0)    , fMemoryManager(manager){    fRefName = XMLString::replicate(refName, fMemoryManager);}inline XMLRefInfo::~XMLRefInfo(){    fMemoryManager->deallocate(fRefName);}// ---------------------------------------------------------------------------//  XMLRefInfo: Getter methods// ---------------------------------------------------------------------------inline bool XMLRefInfo::getDeclared() const{    return fDeclared;}inline const XMLCh* XMLRefInfo::getRefName() const{    return fRefName;}inline bool XMLRefInfo::getUsed() const{    return fUsed;}// ---------------------------------------------------------------------------//  XMLRefInfo: Setter methods// ---------------------------------------------------------------------------inline void XMLRefInfo::setDeclared(const bool newValue){    fDeclared = newValue;}inline void XMLRefInfo::setUsed(const bool newValue){    fUsed = newValue;}XERCES_CPP_NAMESPACE_END#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -