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 
24 #ifndef OOX_XLS_SHAREDSTRINGSBUFFER_HXX
25 #define OOX_XLS_SHAREDSTRINGSBUFFER_HXX
26 
27 #include "oox/xls/richstring.hxx"
28 
29 namespace oox {
30 namespace xls {
31 
32 // ============================================================================
33 
34 /** Collects all strings from the shared strings substream. */
35 class SharedStringsBuffer : public WorkbookHelper
36 {
37 public:
38     explicit            SharedStringsBuffer( const WorkbookHelper& rHelper );
39 
40     /** Creates and returns a new string entry. */
41     RichStringRef       createRichString();
42     /** Imports the complete shared string table from a BIFF file. */
43     void                importSst( BiffInputStream& rStrm );
44 
45     /** Final processing after import of all strings. */
46     void                finalizeImport();
47 
48     /** Returns the specified string. */
49     RichStringRef       getString( sal_Int32 nStringId ) const;
50 
51 private:
52     typedef RefVector< RichString > StringVector;
53     StringVector        maStrings;
54 };
55 
56 // ============================================================================
57 
58 } // namespace xls
59 } // namespace oox
60 
61 #endif
62