You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2003/10/14 17:19:24 UTC

cvs commit: xml-xerces/c/src/xercesc/validators/common Grammar.cpp Grammar.hpp Makefile.in

peiyongz    2003/10/14 08:19:24

  Modified:    c/src/xercesc/validators/common Grammar.hpp Makefile.in
  Added:       c/src/xercesc/validators/common Grammar.cpp
  Log:
  Implementation of Serialization/Deserialization
  
  Revision  Changes    Path
  1.8       +11 -1     xml-xerces/c/src/xercesc/validators/common/Grammar.hpp
  
  Index: Grammar.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/common/Grammar.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Grammar.hpp	22 Sep 2003 19:47:14 -0000	1.7
  +++ Grammar.hpp	14 Oct 2003 15:19:24 -0000	1.8
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.8  2003/10/14 15:19:24  peiyongz
  + * Implementation of Serialization/Deserialization
  + *
    * Revision 1.7  2003/09/22 19:47:14  neilg
    * change Grammar::putElemDecl(XMLElementDecl, bool) so that it does not require the Grammar object to be const.  Also, mark findOrAddGrammar as being dangerous in multithreaded situations
    *
  @@ -106,6 +109,8 @@
   #include <xercesc/framework/XMLEntityDecl.hpp>
   #include <xercesc/framework/XMLNotationDecl.hpp>
   
  +#include <xercesc/internal/XSerializable.hpp>
  +
   XERCES_CPP_NAMESPACE_BEGIN
   
   class XMLGrammarDescription;
  @@ -114,7 +119,7 @@
   // This abstract class specifies the interface for a Grammar
   //
   
  -class VALIDATORS_EXPORT Grammar : public XMemory
  +class VALIDATORS_EXPORT Grammar : public XSerializable, public XMemory
   {
   public:
   
  @@ -247,6 +252,11 @@
   
       virtual void                    setGrammarDescription( XMLGrammarDescription*) = 0;
       virtual XMLGrammarDescription*  getGrammarDescription() const = 0;
  +
  +    /***
  +     * Support for Serialization/De-serialization
  +     ***/
  +    DECL_XSERIALIZABLE(Grammar)
   
   protected :
       // -----------------------------------------------------------------------
  
  
  
  1.4       +4 -0      xml-xerces/c/src/xercesc/validators/common/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/common/Makefile.in,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Makefile.in	17 Sep 2002 21:24:19 -0000	1.3
  +++ Makefile.in	14 Oct 2003 15:19:24 -0000	1.4
  @@ -54,6 +54,9 @@
   # <http://www.apache.org/>.
   #
   # $Log$
  +# Revision 1.4  2003/10/14 15:19:24  peiyongz
  +# Implementation of Serialization/Deserialization
  +#
   # Revision 1.3  2002/09/17 21:24:19  peiyongz
   # RPM for Xerces2.1.0, patch from Thomas Woerner (thomas@linux.de)
   #
  @@ -137,6 +140,7 @@
   	ContentLeafNameTypeVector.$(TO) \
   	ContentSpecNode.$(TO) \
   	DFAContentModel.$(TO) \
  +	Grammar.$(TO) \
   	GrammarResolver.$(TO) \
   	MixedContentModel.$(TO) \
   	SimpleContentModel.$(TO)
  
  
  
  1.1                  xml-xerces/c/src/xercesc/validators/common/Grammar.cpp
  
  Index: Grammar.cpp
  ===================================================================
  /*
   * The Apache Software License, Version 1.1
   *
   *
   * Copyright (c) 2001 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution,
   *    if any, must include the following acknowledgment:
   *       "This product includes software developed by the
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowledgment may appear in the software itself,
   *    if and wherever such third-party acknowledgments normally appear.
   *
   * 4. The names "Xerces" and "Apache Software Foundation" must
   *    not be used to endorse or promote products derived from this
   *    software without prior written permission. For written
   *    permission, please contact apache@apache.org.
   *
   * 5. Products derived from this software may not be called "Apache",
   *    nor may "Apache" appear in their name, without prior written
   *    permission of the Apache Software Foundation.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation and was
   * originally based on software copyright (c) 2001, International
   * Business Machines, Inc., http://www.apache.org.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   */
  
  /*
   * $Id: Grammar.cpp,v 1.1 2003/10/14 15:19:24 peiyongz Exp $
   * $Log: Grammar.cpp,v $
   * Revision 1.1  2003/10/14 15:19:24  peiyongz
   * Implementation of Serialization/Deserialization
   *
   */
  
  #include <xercesc/validators/common/Grammar.hpp>
  
  XERCES_CPP_NAMESPACE_BEGIN
  
  /***
   * Support for Serialization/De-serialization
   ***/
  
  IMPL_XSERIALIZABLE_NOCREATE(Grammar)
  
  void Grammar::serialize(XSerializeEngine& serEng)
  {
      //no data
  }
  
  XERCES_CPP_NAMESPACE_END
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org