xlnt.hpp 3.4 KB

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