1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SC_INC_RECHEAD_HXX
21 #define INCLUDED_SC_INC_RECHEAD_HXX
23 #include <tools/stream.hxx>
28 #define SCID_SIZES 0x4200
31 #define SC_31_EXPORT_VER 0x0012 // version for 3.1-export
33 #define SC_FONTCHARSET 0x0101 // Font-CharSets have to be right
36 #define SC_MATRIX_DOUBLEREF 0x0202 // DoubleRef implicit intersection
38 #define SC_CURRENT_VERSION 0x0205
40 // all above SC_31_EXPORT_VER has to be queried during saving,
41 // because 3.1-export writes this version number.
43 // btw: 10 following 09 is not a counting error but an intentional gap,
44 // because it was not clear, how long the RelRefs development would take. :)
48 // Header with size specification for multiple objects
50 class ScMultipleReadHeader
54 std::unique_ptr
<sal_uInt8
[]>
56 std::unique_ptr
<SvMemoryStream
>
63 ScMultipleReadHeader(SvStream
& rNewStream
);
64 ~ScMultipleReadHeader();
68 sal_uLong
BytesLeft() const;
71 class ScMultipleWriteHeader
75 SvMemoryStream aMemStream
;
78 sal_uLong nEntryStart
;
81 ScMultipleWriteHeader(SvStream
& rNewStream
);
82 ~ScMultipleWriteHeader();
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */