mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
forgot to update some includes
This commit is contained in:
parent
500303b303
commit
3e99225652
|
@ -33,6 +33,10 @@ namespace xlnt {
|
|||
class cell_reference;
|
||||
class range_reference;
|
||||
|
||||
/// <summary>
|
||||
/// Functor for hashing a cell reference.
|
||||
/// Allows for use of std::unordered_set<cell_reference, cel_reference_hash> and similar.
|
||||
/// </summary>
|
||||
struct cell_reference_hash
|
||||
{
|
||||
std::size_t operator()(const cell_reference &k) const;
|
||||
|
|
|
@ -39,6 +39,8 @@ const std::string download_url = "https://github.com/tfussell/xlnt/archive/maste
|
|||
#include <xlnt/cell/cell_reference.hpp>
|
||||
#include <xlnt/cell/comment.hpp>
|
||||
#include <xlnt/cell/types.hpp>
|
||||
#include <xlnt/packaging/document_properties.hpp>
|
||||
#include <xlnt/packaging/manifest.hpp>
|
||||
#include <xlnt/packaging/relationship.hpp>
|
||||
#include <xlnt/packaging/zip_file.hpp>
|
||||
#include <xlnt/serialization/encoding.hpp>
|
||||
|
@ -54,10 +56,8 @@ const std::string download_url = "https://github.com/tfussell/xlnt/archive/maste
|
|||
#include <xlnt/styles/style.hpp>
|
||||
#include <xlnt/utils/datetime.hpp>
|
||||
#include <xlnt/utils/exceptions.hpp>
|
||||
#include <xlnt/workbook/document_properties.hpp>
|
||||
#include <xlnt/workbook/document_security.hpp>
|
||||
#include <xlnt/workbook/external_book.hpp>
|
||||
#include <xlnt/workbook/manifest.hpp>
|
||||
#include <xlnt/workbook/named_range.hpp>
|
||||
#include <xlnt/workbook/theme.hpp>
|
||||
#include <xlnt/workbook/workbook.hpp>
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
#include <xlnt/cell/cell.hpp>
|
||||
#include <xlnt/cell/cell_reference.hpp>
|
||||
#include <xlnt/cell/comment.hpp>
|
||||
#include <xlnt/packaging/document_properties.hpp>
|
||||
#include <xlnt/packaging/relationship.hpp>
|
||||
#include <xlnt/styles/color.hpp>
|
||||
#include <xlnt/utils/datetime.hpp>
|
||||
#include <xlnt/utils/exceptions.hpp>
|
||||
#include <xlnt/workbook/workbook.hpp>
|
||||
#include <xlnt/workbook/document_properties.hpp>
|
||||
#include <xlnt/worksheet/column_properties.hpp>
|
||||
#include <xlnt/worksheet/row_properties.hpp>
|
||||
#include <xlnt/worksheet/worksheet.hpp>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <xlnt/workbook/document_properties.hpp>
|
||||
#include <xlnt/packaging/document_properties.hpp>
|
||||
|
||||
namespace xlnt {
|
||||
|
||||
|
|
|
@ -12,9 +12,9 @@
|
|||
#include <xlnt/serialization/xml_document.hpp>
|
||||
#include <xlnt/serialization/xml_node.hpp>
|
||||
#include <xlnt/serialization/xml_serializer.hpp>
|
||||
#include <xlnt/packaging/document_properties.hpp>
|
||||
#include <xlnt/packaging/manifest.hpp>
|
||||
#include <xlnt/utils/exceptions.hpp>
|
||||
#include <xlnt/workbook/document_properties.hpp>
|
||||
#include <xlnt/workbook/manifest.hpp>
|
||||
#include <xlnt/workbook/workbook.hpp>
|
||||
#include <xlnt/worksheet/worksheet.hpp>
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#include <xlnt/packaging/manifest.hpp>
|
||||
#include <xlnt/serialization/manifest_serializer.hpp>
|
||||
#include <xlnt/serialization/xml_document.hpp>
|
||||
#include <xlnt/serialization/xml_node.hpp>
|
||||
#include <xlnt/workbook/manifest.hpp>
|
||||
|
||||
#include "detail/constants.hpp"
|
||||
#include <detail/constants.hpp>
|
||||
|
||||
namespace xlnt {
|
||||
|
||||
|
|
|
@ -5,14 +5,14 @@
|
|||
|
||||
#include <cxxtest/TestSuite.h>
|
||||
|
||||
#include <xlnt/packaging/manifest.hpp>
|
||||
#include <xlnt/serialization/excel_serializer.hpp>
|
||||
#include <xlnt/serialization/manifest_serializer.hpp>
|
||||
#include <xlnt/serialization/relationship_serializer.hpp>
|
||||
#include <xlnt/serialization/workbook_serializer.hpp>
|
||||
#include <xlnt/serialization/xml_serializer.hpp>
|
||||
#include <xlnt/workbook/manifest.hpp>
|
||||
|
||||
#include "helpers/path_helper.hpp"
|
||||
#include <helpers/path_helper.hpp>
|
||||
|
||||
class test_read : public CxxTest::TestSuite
|
||||
{
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
#include <algorithm>
|
||||
|
||||
#include <xlnt/packaging/document_properties.hpp>
|
||||
#include <xlnt/packaging/manifest.hpp>
|
||||
#include <xlnt/packaging/relationship.hpp>
|
||||
#include <xlnt/serialization/workbook_serializer.hpp>
|
||||
#include <xlnt/serialization/xml_document.hpp>
|
||||
#include <xlnt/serialization/xml_node.hpp>
|
||||
#include <xlnt/utils/datetime.hpp>
|
||||
#include <xlnt/utils/exceptions.hpp>
|
||||
#include <xlnt/workbook/document_properties.hpp>
|
||||
#include <xlnt/workbook/manifest.hpp>
|
||||
#include <xlnt/workbook/named_range.hpp>
|
||||
#include <xlnt/workbook/workbook.hpp>
|
||||
#include <xlnt/worksheet/range_reference.hpp>
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
#include <sstream>
|
||||
|
||||
#include <xlnt/drawing/drawing.hpp>
|
||||
#include <xlnt/packaging/document_properties.hpp>
|
||||
#include <xlnt/packaging/manifest.hpp>
|
||||
#include <xlnt/packaging/relationship.hpp>
|
||||
#include <xlnt/packaging/zip_file.hpp>
|
||||
#include <xlnt/serialization/excel_serializer.hpp>
|
||||
|
@ -16,8 +18,6 @@
|
|||
#include <xlnt/styles/protection.hpp>
|
||||
#include <xlnt/styles/style.hpp>
|
||||
#include <xlnt/utils/exceptions.hpp>
|
||||
#include <xlnt/workbook/document_properties.hpp>
|
||||
#include <xlnt/workbook/manifest.hpp>
|
||||
#include <xlnt/workbook/named_range.hpp>
|
||||
#include <xlnt/workbook/theme.hpp>
|
||||
#include <xlnt/workbook/workbook.hpp>
|
||||
|
|
Loading…
Reference in New Issue
Block a user