[GME-commit] GMESRC/GME/Include/xercesc/sax2 Makefile.in, NONE, 1.1 SAX2XMLFilter.hpp, NONE, 1.1 sax2Dummy.cpp, NONE, 1.1 Attributes.hpp, 1.1.1.1, 1.2 ContentHandler.hpp, 1.1.1.1, 1.2 DeclHandler.hpp, 1.1.1.1, 1.2 DefaultHandler.hpp, 1.1.1.1, 1.2 LexicalHandler.hpp, 1.1.1.1, 1.2 SAX2XMLReader.hpp, 1.1.1.1, 1.2 XMLReaderFactory.hpp, 1.1.1.1, 1.2
Log messages of CVS commits
gme-commit at list.isis.vanderbilt.edu
Tue Feb 19 14:16:30 CST 2008
- Previous message: [GME-commit] GMESRC/GME/Include/xercesc/parsers AbstractDOMParser.cpp, NONE, 1.1 DOMBuilderImpl.cpp, NONE, 1.1 Makefile.in, NONE, 1.1 SAX2XMLFilterImpl.cpp, NONE, 1.1 SAX2XMLFilterImpl.hpp, NONE, 1.1 SAX2XMLReaderImpl.cpp, NONE, 1.1 SAXParser.cpp, NONE, 1.1 XercesDOMParser.cpp, NONE, 1.1 AbstractDOMParser.hpp, 1.1.1.1, 1.2 DOMBuilderImpl.hpp, 1.1.1.1, 1.2 SAX2XMLReaderImpl.hpp, 1.1.1.1, 1.2 SAXParser.hpp, 1.1.1.1, 1.2 XercesDOMParser.hpp, 1.1.1.1, 1.2
- Next message: [GME-commit] GMESRC/GME/Include/xercesc/sax Dummy.cpp, NONE, 1.1 InputSource.cpp, NONE, 1.1 Makefile.in, NONE, 1.1 SAXException.cpp, NONE, 1.1 SAXParseException.cpp, NONE, 1.1 AttributeList.hpp, 1.1.1.1, 1.2 DTDHandler.hpp, 1.1.1.1, 1.2 DocumentHandler.hpp, 1.1.1.1, 1.2 EntityResolver.hpp, 1.1.1.1, 1.2 ErrorHandler.hpp, 1.1.1.1, 1.2 HandlerBase.hpp, 1.1.1.1, 1.2 InputSource.hpp, 1.1.1.1, 1.2 Locator.hpp, 1.1.1.1, 1.2 Parser.hpp, 1.1.1.1, 1.2 SAXException.hpp, 1.1.1.1, 1.2 SAXParseException.hpp, 1.1.1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /project/gme-repository/GMESRC/GME/Include/xercesc/sax2
In directory escher:/tmp/cvs-serv26529/sax2
Modified Files:
Attributes.hpp ContentHandler.hpp DeclHandler.hpp
DefaultHandler.hpp LexicalHandler.hpp SAX2XMLReader.hpp
XMLReaderFactory.hpp
Added Files:
Makefile.in SAX2XMLFilter.hpp sax2Dummy.cpp
Log Message:
Xerces2.7 includes checkin.
CVS User: Zoltan Molnar, ISIS (zolmol)
--- NEW FILE: SAX2XMLFilter.hpp ---
/*
* Copyright 1999-2001,2004 The Apache Software Foundation.
*
* Licensed 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: SAX2XMLFilter.hpp,v 1.1 2008/02/19 20:16:28 zolmol Exp $
*/
#ifndef SAX2XMLFilter_HPP
#define SAX2XMLFilter_HPP
#include <xercesc/sax2/SAX2XMLReader.hpp>
XERCES_CPP_NAMESPACE_BEGIN
class SAX2_EXPORT SAX2XMLFilter : public SAX2XMLReader
{
public:
// -----------------------------------------------------------------------
// Constructors and Destructor
// -----------------------------------------------------------------------
/** @name Constructors and Destructor */
//@{
/** The default constructor */
SAX2XMLFilter()
{
}
/** The destructor */
virtual ~SAX2XMLFilter()
{
}
//@}
//-----------------------------------------------------------------------
// The XMLFilter interface
//-----------------------------------------------------------------------
/** @name Implementation of SAX 2.0 XMLFilter interface's. */
//@{
/**
* This method returns the parent XMLReader object.
*
* @return A pointer to the parent XMLReader object.
*/
virtual SAX2XMLReader* getParent() const = 0 ;
/**
* Sets the parent XMLReader object; parse requests will be forwarded to this
* object, and callback notifications coming from it will be postprocessed
*
* @param parent The new XMLReader parent.
* @see SAX2XMLReader#SAX2XMLReader
*/
virtual void setParent(SAX2XMLReader* parent) = 0;
//@}
private :
/* The copy constructor, you cannot call this directly */
SAX2XMLFilter(const SAX2XMLFilter&);
/* The assignment operator, you cannot call this directly */
SAX2XMLFilter& operator=(const SAX2XMLFilter&);
};
XERCES_CPP_NAMESPACE_END
#endif
--- NEW FILE: sax2Dummy.cpp ---
--- NEW FILE: Makefile.in ---
- Previous message: [GME-commit] GMESRC/GME/Include/xercesc/parsers AbstractDOMParser.cpp, NONE, 1.1 DOMBuilderImpl.cpp, NONE, 1.1 Makefile.in, NONE, 1.1 SAX2XMLFilterImpl.cpp, NONE, 1.1 SAX2XMLFilterImpl.hpp, NONE, 1.1 SAX2XMLReaderImpl.cpp, NONE, 1.1 SAXParser.cpp, NONE, 1.1 XercesDOMParser.cpp, NONE, 1.1 AbstractDOMParser.hpp, 1.1.1.1, 1.2 DOMBuilderImpl.hpp, 1.1.1.1, 1.2 SAX2XMLReaderImpl.hpp, 1.1.1.1, 1.2 SAXParser.hpp, 1.1.1.1, 1.2 XercesDOMParser.hpp, 1.1.1.1, 1.2
- Next message: [GME-commit] GMESRC/GME/Include/xercesc/sax Dummy.cpp, NONE, 1.1 InputSource.cpp, NONE, 1.1 Makefile.in, NONE, 1.1 SAXException.cpp, NONE, 1.1 SAXParseException.cpp, NONE, 1.1 AttributeList.hpp, 1.1.1.1, 1.2 DTDHandler.hpp, 1.1.1.1, 1.2 DocumentHandler.hpp, 1.1.1.1, 1.2 EntityResolver.hpp, 1.1.1.1, 1.2 ErrorHandler.hpp, 1.1.1.1, 1.2 HandlerBase.hpp, 1.1.1.1, 1.2 InputSource.hpp, 1.1.1.1, 1.2 Locator.hpp, 1.1.1.1, 1.2 Parser.hpp, 1.1.1.1, 1.2 SAXException.hpp, 1.1.1.1, 1.2 SAXParseException.hpp, 1.1.1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the GME-commit
mailing list