1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23#ifndef __com_sun_star_io_XDataOutputStream_idl__ 24#define __com_sun_star_io_XDataOutputStream_idl__ 25 26#ifndef __com_sun_star_io_XOutputStream_idl__ 27#include <com/sun/star/io/XOutputStream.idl> 28#endif 29 30#ifndef __com_sun_star_io_IOException_idl__ 31#include <com/sun/star/io/IOException.idl> 32#endif 33 34 35//============================================================================= 36 37module com { module sun { module star { module io { 38 39//============================================================================= 40 41// DocMerge from xml: interface com::sun::star::io::XDataOutputStream 42/** makes it possible to write machine-independent simple data types to a 43 stream. 44 @see com::sun::star::io::XDataInputStream 45 */ 46published interface XDataOutputStream: com::sun::star::io::XOutputStream 47{ 48 //------------------------------------------------------------------------- 49 50 // DocMerge from xml: method com::sun::star::io::XDataOutputStream::writeBoolean 51 /** writes a boolean. It is an 8-bit value. 0 means FALSE; all other 52 values mean TRUE. 53 */ 54 void writeBoolean( [in] boolean Value ) 55 raises( com::sun::star::io::IOException ); 56 57 //------------------------------------------------------------------------- 58 59 // DocMerge from xml: method com::sun::star::io::XDataOutputStream::writeByte 60 /** writes an 8-bit byte. 61 */ 62 void writeByte( [in] byte Value ) 63 raises( com::sun::star::io::IOException ); 64 65 //------------------------------------------------------------------------- 66 67 // DocMerge from xml: method com::sun::star::io::XDataOutputStream::writeChar 68 /** writes a 16-bit character. 69 */ 70 void writeChar( [in] char Value ) 71 raises( com::sun::star::io::IOException ); 72 73 //------------------------------------------------------------------------- 74 75 // DocMerge from xml: method com::sun::star::io::XDataOutputStream::writeShort 76 /** writes a 16-bit big endian integer. 77 */ 78 void writeShort( [in] short Value ) 79 raises( com::sun::star::io::IOException ); 80 81 //------------------------------------------------------------------------- 82 83 // DocMerge from xml: method com::sun::star::io::XDataOutputStream::writeLong 84 /** writes a 32-bit big endian integer. 85 */ 86 void writeLong( [in] long Value ) 87 raises( com::sun::star::io::IOException ); 88 89 //------------------------------------------------------------------------- 90 91 // DocMerge from xml: method com::sun::star::io::XDataOutputStream::writeHyper 92 /** writes a 64-bit big endian integer. 93 */ 94 void writeHyper( [in] hyper Value ) 95 raises( com::sun::star::io::IOException ); 96 97 //------------------------------------------------------------------------- 98 99 // DocMerge from xml: method com::sun::star::io::XDataOutputStream::writeFloat 100 /** writes a 32-bit IEEE float. 101 */ 102 void writeFloat( [in] float Value ) 103 raises( com::sun::star::io::IOException ); 104 105 //------------------------------------------------------------------------- 106 107 // DocMerge from xml: method com::sun::star::io::XDataOutputStream::writeDouble 108 /** writes a 64-bit IEEE double. 109 */ 110 void writeDouble( [in] double Value ) 111 raises( com::sun::star::io::IOException ); 112 113 //------------------------------------------------------------------------- 114 115 // DocMerge from xml: method com::sun::star::io::XDataOutputStream::writeUTF 116 /** writes a string in UTF format. 117 */ 118 void writeUTF( [in] string Value ) 119 raises( com::sun::star::io::IOException ); 120 121}; 122 123//============================================================================= 124 125}; }; }; }; 126 127/*============================================================================= 128 129=============================================================================*/ 130#endif 131