Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:04:12

0001 // Created on: 2001-07-26
0002 // Created by: Alexander GRIGORIEV
0003 // Copyright (c) 2001-2014 OPEN CASCADE SAS
0004 //
0005 // This file is part of Open CASCADE Technology software library.
0006 //
0007 // This library is free software; you can redistribute it and/or modify it under
0008 // the terms of the GNU Lesser General Public License version 2.1 as published
0009 // by the Free Software Foundation, with special exception defined in the file
0010 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0011 // distribution for complete text of the license and disclaimer of any warranty.
0012 //
0013 // Alternatively, this file may be used under the terms of Open CASCADE
0014 // commercial license or contractual agreement.
0015 
0016 #ifndef LDOM_BasicText_HeaderFile
0017 #define LDOM_BasicText_HeaderFile
0018 
0019 #include <LDOM_BasicNode.hxx>
0020 #include <LDOMBasicString.hxx>
0021 
0022 class LDOM_CharacterData;
0023 
0024 //  Class LDOM_BasicText
0025 //
0026 
0027 class LDOM_BasicText : public LDOM_BasicNode
0028 {
0029  public:
0030 
0031   // ---------- PUBLIC METHODS ----------
0032 
0033   LDOM_BasicText () : LDOM_BasicNode (LDOM_Node::UNKNOWN) {}
0034   //    Empty constructor
0035 
0036   LDOM_BasicText&       operator =      (const LDOM_NullPtr * aNull);
0037   //    Nullify
0038 
0039   const LDOMBasicString& GetData        () const
0040                                 { return myValue; }
0041 
0042   void                  SetData         (const LDOMBasicString&         aValue,
0043                                          const Handle(LDOM_MemManager)& aDoc)
0044                                 { myValue = LDOMString (aValue, aDoc); }
0045 
0046  private:
0047   // ---------- PRIVATE METHODS ----------
0048   friend class LDOM_Node;
0049   friend class LDOMParser;
0050   friend class LDOM_Document;
0051   friend class LDOM_BasicElement;
0052 
0053   LDOM_BasicText                        (const LDOM_Node::NodeType aType,
0054                                          const LDOMBasicString&    aData)
0055     : LDOM_BasicNode (aType), myValue (aData) {}
0056   // Constructor
0057 
0058   LDOM_BasicText                        (const LDOM_CharacterData& aText);
0059 
0060   static LDOM_BasicText& Create         (const LDOM_Node::NodeType      aType,
0061                                          const LDOMBasicString&         aData,
0062                                          const Handle(LDOM_MemManager)& aDoc);
0063   // Creation
0064 
0065  private:
0066   // ---------- PRIVATE FIELDS ----------
0067 
0068   LDOMBasicString       myValue;
0069 };
0070 
0071 #endif