xlnt - community edition
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends
xlnt.hpp
1 // Copyright (c) 2014-2022 Thomas Fussell
2 // Copyright (c) 2024-2025 xlnt-community
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a copy
5 // of this software and associated documentation files (the "Software"), to deal
6 // in the Software without restriction, including without limitation the rights
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 // copies of the Software, and to permit persons to whom the Software is
9 // furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 // THE SOFTWARE
21 //
22 // @license: http://www.opensource.org/licenses/mit-license.php
23 // @author: see AUTHORS file
24 
25 #pragma once
26 
27 #include <xlnt/xlnt_config.hpp>
28 
29 // cell
30 #include <xlnt/cell/cell.hpp>
31 #include <xlnt/cell/cell_reference.hpp>
32 #include <xlnt/cell/cell_type.hpp>
33 #include <xlnt/cell/comment.hpp>
34 #include <xlnt/cell/hyperlink.hpp>
35 #include <xlnt/cell/index_types.hpp>
36 #include <xlnt/cell/rich_text.hpp>
37 #include <xlnt/cell/rich_text_run.hpp>
38 
39 // packaging
40 #include <xlnt/packaging/manifest.hpp>
41 #include <xlnt/packaging/relationship.hpp>
42 #include <xlnt/packaging/uri.hpp>
43 
44 // styles
45 #include <xlnt/styles/alignment.hpp>
46 #include <xlnt/styles/border.hpp>
47 #include <xlnt/styles/color.hpp>
48 #include <xlnt/styles/fill.hpp>
49 #include <xlnt/styles/font.hpp>
50 #include <xlnt/styles/format.hpp>
51 #include <xlnt/styles/number_format.hpp>
52 #include <xlnt/styles/protection.hpp>
53 #include <xlnt/styles/style.hpp>
54 
55 // utils
56 #include <xlnt/utils/calendar.hpp>
57 #include <xlnt/utils/date.hpp>
58 #include <xlnt/utils/datetime.hpp>
59 #include <xlnt/utils/exceptions.hpp>
60 #include <xlnt/utils/path.hpp>
61 #include <xlnt/utils/time.hpp>
62 #include <xlnt/utils/timedelta.hpp>
63 #include <xlnt/utils/variant.hpp>
64 
65 // workbook
66 #include <xlnt/workbook/document_security.hpp>
67 #include <xlnt/workbook/external_book.hpp>
68 #include <xlnt/workbook/metadata_property.hpp>
69 #include <xlnt/workbook/named_range.hpp>
70 #include <xlnt/workbook/streaming_workbook_reader.hpp>
71 #include <xlnt/workbook/streaming_workbook_writer.hpp>
72 #include <xlnt/workbook/theme.hpp>
73 #include <xlnt/workbook/workbook.hpp>
74 #include <xlnt/workbook/worksheet_iterator.hpp>
75 
76 // worksheet
77 #include <xlnt/worksheet/cell_iterator.hpp>
78 #include <xlnt/worksheet/cell_vector.hpp>
79 #include <xlnt/worksheet/column_properties.hpp>
80 #include <xlnt/worksheet/header_footer.hpp>
81 #include <xlnt/worksheet/major_order.hpp>
82 #include <xlnt/worksheet/page_margins.hpp>
83 #include <xlnt/worksheet/page_setup.hpp>
84 #include <xlnt/worksheet/pane.hpp>
85 #include <xlnt/worksheet/range.hpp>
86 #include <xlnt/worksheet/range_iterator.hpp>
87 #include <xlnt/worksheet/range_reference.hpp>
88 #include <xlnt/worksheet/row_properties.hpp>
89 #include <xlnt/worksheet/selection.hpp>
90 #include <xlnt/worksheet/sheet_format_properties.hpp>
91 #include <xlnt/worksheet/sheet_protection.hpp>
92 #include <xlnt/worksheet/sheet_view.hpp>
93 #include <xlnt/worksheet/worksheet.hpp>