00001 /*00002 * Licensed to the Apache Software Foundation (ASF) under one or more00003 * contributor license agreements. See the NOTICE file distributed with00004 * this work for additional information regarding copyright ownership.00005 * The ASF licenses this file to You under the Apache License, Version 2.000006 * (the "License"); you may not use this file except in compliance with00007 * the License. You may obtain a copy of the License at00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.000010 * 00011 * Unless required by applicable law or agreed to in writing, software00012 * distributed under the License is distributed on an "AS IS" BASIS,00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.00014 * See the License for the specific language governing permissions and00015 * limitations under the License.00016 */00017
00018 /*00019 * $Id: BinOutputStream.hpp 568078 2007-08-21 11:43:25Z amassari $00020 */00021
00022 #if !defined(BIN_OUTPUT_STREAM_HPP)00023#define BIN_OUTPUT_STREAM_HPP00024
00025 #include <xercesc/util/XMemory.hpp>00026
00027 XERCES_CPP_NAMESPACE_BEGIN00028
00029class BinOutputStream : publicXMemory00030 {
00031 public :
00032 // -----------------------------------------------------------------------00033 // Virtual destructor for derived classes00034 // -----------------------------------------------------------------------00035 virtual ~BinOutputStream();
00036
00037 // -----------------------------------------------------------------------00038 // The virtual output stream interface00039 // -----------------------------------------------------------------------00040 virtualunsignedint curPos() const = 0;
00041
00042 virtualvoid writeBytes
00043 (
00044 constXMLByte* const toGo
00045 , constunsignedint maxToWrite
00046 ) = 0;
00047
00048 protected :
00049 // -----------------------------------------------------------------------00050 // Hidden Constructors00051 // -----------------------------------------------------------------------00052 BinOutputStream();
00053
00054
00055 private :
00056 // -----------------------------------------------------------------------00057 // Unimplemented Constructors00058 // -----------------------------------------------------------------------00059 BinOutputStream(constBinOutputStream&);
00060 BinOutputStream& operator=(constBinOutputStream&);
00061 };
00062
00063 XERCES_CPP_NAMESPACE_END00064
00065 #endif