VXMLDocumentRep.hpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #include "DocumentModel.hpp"
  23. class VXMLDocumentRep {
  24. public:
  25.   const VXMLNodeRef * GetRoot() const;
  26.   void StartElement(VXMLElementType n, DocumentLevel dlevel);
  27.   void PruneWhitespace();
  28.   void EndElement();
  29.   void AddContent(const VXIchar * c, unsigned int len);
  30.   void MarkSSMLHeader(VXIint len = -1);
  31.   void AddAttribute(VXMLAttributeType name, const vxistring & attr);
  32.   bool GetAttribute(VXMLAttributeType key, vxistring & attr) const;
  33.   VXMLDocumentRep();
  34.   static bool AddRefAtomic(VXMLDocumentRep * t);
  35.   static bool AddRef(VXMLDocumentRep * t);
  36.   static bool ReleaseAtomic(VXMLDocumentRep * & t);
  37.   static bool Release(VXMLDocumentRep * & t);
  38.   static bool IsValidDocRep(VXMLDocumentRep * t);
  39.   static void IfValidRemoveDocRep(VXMLDocumentRep * t);
  40.   VXMLElementType GetParentType() const;
  41. private:
  42.   void AddChild(VXMLNodeRef *);
  43. private:
  44.   ~VXMLDocumentRep();                                   // only used by Release
  45.   VXMLDocumentRep(const VXMLDocumentRep &);             // not implemented
  46.   VXMLDocumentRep & operator=(const VXMLDocumentRep &); // not implemented
  47.   const VXMLNodeRef * root;
  48.   VXMLNodeRef * pos;
  49.   VXMLNode::VXMLNodeType posType;
  50.   int count;
  51. public:
  52.   vxistring rootBaseURL;
  53.   vxistring defaultLang;
  54. };