xmlengoutputstream.h

Go to the documentation of this file.
00001 /*
00002 * ==============================================================================
00003 *  Name        : xmlengoutputstream.h
00004 *  Part of     : Xml Engine / DOM XPath C++ Wrapper
00005 *  Interface   : Domain, XML Engine DOM API
00006 *  Description : Interface class describing class that may be used as
00007 *                 output stream for dom tree
00008 *  Version     : %version: 3 %
00009 *
00010 *  Copyright © 2004-2005 Nokia. All rights reserved.
00011 *  This material, including documentation and any related 
00012 *  computer programs, is protected by copyright controlled by 
00013 *  Nokia. All rights are reserved. Copying, including 
00014 *  reproducing, storing, adapting or translating, any 
00015 *  or all of this material requires the prior written consent of 
00016 *  Nokia. This material also contains confidential 
00017 *  information which may not be disclosed to others without the 
00018 *  prior written consent of Nokia.
00019 * ==============================================================================
00020 */
00021 
00022 #ifndef XMLENGINE_MOUTPUTSTREAM_H_INCLUDED
00023 #define XMLENGINE_MOUTPUTSTREAM_H_INCLUDED
00024 
00025 #include <e32base.h>
00026 
00027 
00028 
00037 class MXmlEngOutputStream
00038     {
00039 public:
00046     virtual TInt Write(const TDesC8& aBuffer) = 0;
00047 
00056     virtual TInt Close() = 0;
00057     };
00058 
00059 
00060 
00061 #endif /* XMLENGINE_MOUTPUTSTREAM_H_INCLUDED */  

Copyright © Nokia Corporation 2001-2007
Back to top