mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
Cleanup and remove <xlnt/xlnt.hpp>
This commit is contained in:
parent
03a56d8af9
commit
51545734e8
|
@ -25,10 +25,25 @@
|
|||
|
||||
#include <sstream>
|
||||
|
||||
#include <xlnt/xlnt.hpp>
|
||||
#include <helpers/assertions.hpp>
|
||||
#include <helpers/test_suite.hpp>
|
||||
|
||||
#include <xlnt/cell/cell.hpp>
|
||||
#include <xlnt/cell/comment.hpp>
|
||||
#include <xlnt/cell/hyperlink.hpp>
|
||||
#include <xlnt/styles/number_format.hpp>
|
||||
#include <xlnt/styles/alignment.hpp>
|
||||
#include <xlnt/styles/border.hpp>
|
||||
#include <xlnt/styles/fill.hpp>
|
||||
#include <xlnt/styles/format.hpp>
|
||||
#include <xlnt/styles/protection.hpp>
|
||||
#include <xlnt/styles/style.hpp>
|
||||
#include <xlnt/worksheet/worksheet.hpp>
|
||||
#include <xlnt/utils/date.hpp>
|
||||
#include <xlnt/utils/datetime.hpp>
|
||||
#include <xlnt/utils/time.hpp>
|
||||
#include <xlnt/utils/timedelta.hpp>
|
||||
|
||||
class cell_test_suite : public test_suite
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include <iostream>
|
||||
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
|
||||
|
||||
class index_types_test_suite : public test_suite
|
||||
{
|
||||
|
|
|
@ -27,9 +27,10 @@
|
|||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
||||
#include <xlnt/xlnt.hpp>
|
||||
#include <helpers/test_suite.hpp>
|
||||
|
||||
#include <xlnt/cell/rich_text.hpp>
|
||||
|
||||
class rich_text_test_suite : public test_suite
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include <iostream>
|
||||
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
#include <xlnt/styles/alignment.hpp>
|
||||
|
||||
class alignment_test_suite : public test_suite
|
||||
{
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
#include <iostream>
|
||||
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
|
||||
#include <xlnt/styles/color.hpp>
|
||||
|
||||
class color_test_suite : public test_suite
|
||||
{
|
||||
|
|
|
@ -26,7 +26,11 @@
|
|||
#include <iostream>
|
||||
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
|
||||
#include <xlnt/cell/cell.hpp>
|
||||
#include <xlnt/styles/fill.hpp>
|
||||
#include <xlnt/utils/date.hpp>
|
||||
#include <xlnt/worksheet/worksheet.hpp>
|
||||
|
||||
class fill_test_suite : public test_suite
|
||||
{
|
||||
|
|
|
@ -26,7 +26,11 @@
|
|||
#include <iostream>
|
||||
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
|
||||
#include <xlnt/styles/number_format.hpp>
|
||||
#include <xlnt/utils/date.hpp>
|
||||
#include <xlnt/utils/time.hpp>
|
||||
#include <xlnt/utils/timedelta.hpp>
|
||||
|
||||
class number_format_test_suite : public test_suite
|
||||
{
|
||||
|
|
|
@ -26,7 +26,9 @@
|
|||
#include <iostream>
|
||||
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
#include <xlnt/utils/date.hpp>
|
||||
#include <xlnt/utils/datetime.hpp>
|
||||
#include <xlnt/utils/time.hpp>
|
||||
|
||||
class datetime_test_suite : public test_suite
|
||||
{
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
#include <helpers/path_helper.hpp>
|
||||
#include <helpers/temporary_file.hpp>
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
|
||||
class path_test_suite : public test_suite
|
||||
{
|
||||
|
|
|
@ -25,12 +25,29 @@
|
|||
|
||||
#include <iostream>
|
||||
|
||||
#include <xlnt/cell/comment.hpp>
|
||||
#include <xlnt/cell/hyperlink.hpp>
|
||||
#include <xlnt/cell/cell.hpp>
|
||||
#include <xlnt/styles/font.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
#include <xlnt/styles/style.hpp>
|
||||
#include <xlnt/styles/fill.hpp>
|
||||
#include <xlnt/styles/format.hpp>
|
||||
#include <xlnt/styles/number_format.hpp>
|
||||
#include <xlnt/styles/border.hpp>
|
||||
#include <xlnt/utils/date.hpp>
|
||||
#include <xlnt/utils/datetime.hpp>
|
||||
#include <xlnt/utils/time.hpp>
|
||||
#include <xlnt/utils/timedelta.hpp>
|
||||
#include <xlnt/utils/variant.hpp>
|
||||
#include <xlnt/workbook/streaming_workbook_reader.hpp>
|
||||
#include <xlnt/workbook/streaming_workbook_writer.hpp>
|
||||
#include <xlnt/workbook/workbook.hpp>
|
||||
#include <xlnt/workbook/metadata_property.hpp>
|
||||
#include <xlnt/worksheet/column_properties.hpp>
|
||||
#include <xlnt/worksheet/row_properties.hpp>
|
||||
#include <xlnt/worksheet/sheet_format_properties.hpp>
|
||||
#include <xlnt/worksheet/header_footer.hpp>
|
||||
#include <xlnt/worksheet/worksheet.hpp>
|
||||
#include <detail/cryptography/xlsx_crypto_consumer.hpp>
|
||||
#include <detail/serialization/vector_streambuf.hpp>
|
||||
#include <helpers/path_helper.hpp>
|
||||
|
|
|
@ -28,7 +28,14 @@
|
|||
|
||||
#include <helpers/temporary_file.hpp>
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
|
||||
#include <xlnt/cell/cell.hpp>
|
||||
#include <xlnt/styles/format.hpp>
|
||||
#include <xlnt/styles/style.hpp>
|
||||
#include <xlnt/workbook/workbook.hpp>
|
||||
#include <xlnt/workbook/worksheet_iterator.hpp>
|
||||
#include <xlnt/worksheet/range.hpp>
|
||||
#include <xlnt/worksheet/worksheet.hpp>
|
||||
|
||||
class workbook_test_suite : public test_suite
|
||||
{
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include <iostream>
|
||||
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/xlnt.hpp>
|
||||
#include <xlnt/worksheet/page_setup.hpp>
|
||||
|
||||
class page_setup_test_suite : public test_suite
|
||||
{
|
||||
|
|
|
@ -25,10 +25,13 @@
|
|||
|
||||
#include <iostream>
|
||||
|
||||
#include <xlnt/xlnt.hpp>
|
||||
|
||||
#include <helpers/test_suite.hpp>
|
||||
#include <xlnt/cell/cell.hpp>
|
||||
#include <xlnt/styles/font.hpp>
|
||||
#include <xlnt/workbook/workbook.hpp>
|
||||
#include <xlnt/worksheet/header_footer.hpp>
|
||||
#include <xlnt/worksheet/range.hpp>
|
||||
#include <xlnt/worksheet/worksheet.hpp>
|
||||
|
||||
class range_test_suite : public test_suite
|
||||
|
|
|
@ -25,8 +25,13 @@
|
|||
|
||||
#include <iostream>
|
||||
|
||||
#include <xlnt/xlnt.hpp>
|
||||
#include <xlnt/cell/cell.hpp>
|
||||
#include <xlnt/cell/hyperlink.hpp>
|
||||
#include <xlnt/workbook/workbook.hpp>
|
||||
#include <xlnt/worksheet/column_properties.hpp>
|
||||
#include <xlnt/worksheet/row_properties.hpp>
|
||||
#include <xlnt/worksheet/range.hpp>
|
||||
#include <xlnt/worksheet/worksheet.hpp>
|
||||
#include <xlnt/worksheet/header_footer.hpp>
|
||||
#include <xlnt/worksheet/worksheet.hpp>
|
||||
#include <helpers/test_suite.hpp>
|
||||
|
|
Loading…
Reference in New Issue
Block a user