/src/libetonyek/src/lib/IWORKDictionary.cpp
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 | | /* |
3 | | * This file is part of the libetonyek project. |
4 | | * |
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/. |
8 | | */ |
9 | | |
10 | | #include "IWORKDictionary.h" |
11 | | |
12 | | namespace libetonyek |
13 | | { |
14 | | |
15 | | IWORKDictionary::IWORKDictionary() |
16 | 0 | : m_cellStyles() |
17 | 0 | , m_cellCommentStyles() |
18 | 0 | , m_characterStyles() |
19 | 0 | , m_chartStyles() |
20 | 0 | , m_chartSeriesStyles() |
21 | 0 | , m_graphicStyles() |
22 | 0 | , m_headlineStyles() |
23 | 0 | , m_layoutStyles() |
24 | 0 | , m_listStyles() |
25 | 0 | , m_paragraphStyles() |
26 | 0 | , m_slideStyles() |
27 | 0 | , m_tableStyles() |
28 | 0 | , m_tableCellStyles() |
29 | 0 | , m_tableVectorStyles() |
30 | 0 | , m_tabularStyles() |
31 | 0 | , m_tocStyles() |
32 | 0 | , m_vectorStyles() |
33 | 0 | , m_stylesheets() |
34 | | |
35 | 0 | , m_beziers() |
36 | 0 | , m_binaries() |
37 | 0 | , m_columnSets() |
38 | 0 | , m_coreImageFilterInfos() |
39 | 0 | , m_data() |
40 | 0 | , m_dateTimeFormats() |
41 | 0 | , m_durationFormats() |
42 | 0 | , m_externalTextWraps() |
43 | 0 | , m_fills() |
44 | 0 | , m_filterDescriptors() |
45 | 0 | , m_filteredImages() |
46 | 0 | , m_filters() |
47 | 0 | , m_formulas() |
48 | 0 | , m_gradients() |
49 | 0 | , m_gradientStops() |
50 | 0 | , m_images() |
51 | 0 | , m_lineSpacings() |
52 | 0 | , m_listLabelGeometries() |
53 | 0 | , m_listLabelTypeInfos() |
54 | 0 | , m_numberFormats() |
55 | 0 | , m_paddings() |
56 | 0 | , m_patterns() |
57 | 0 | , m_shadows() |
58 | 0 | , m_strokes() |
59 | 0 | , m_tableCells() |
60 | 0 | , m_tableComments() |
61 | 0 | , m_tableVectors() |
62 | 0 | , m_tabs() |
63 | 0 | , m_tabulars() |
64 | 0 | , m_textLabels() |
65 | 0 | , m_texturedFillImages() |
66 | 0 | , m_unfiltereds() |
67 | | |
68 | 0 | , m_doubleArrays() |
69 | 0 | , m_listLabelGeometriesArrays() |
70 | 0 | , m_listLabelTypesArrays() |
71 | 0 | { |
72 | 0 | } |
73 | | |
74 | | } |
75 | | |
76 | | /* vim:set shiftwidth=2 softtabstop=2 expandtab: */ |