Cleanup and remove <xlnt/xlnt.hpp>

This commit is contained in:
Crzyrndm 2018-07-05 21:26:29 +12:00
parent 03a56d8af9
commit 51545734e8
14 changed files with 72 additions and 14 deletions

View File

@ -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:

View File

@ -26,7 +26,7 @@
#include <iostream>
#include <helpers/test_suite.hpp>
#include <xlnt/xlnt.hpp>
class index_types_test_suite : public test_suite
{

View File

@ -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:

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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>

View File

@ -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
{

View File

@ -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
{

View File

@ -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

View File

@ -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>