#pragma once #include #include #include #include namespace xlnt { class border; class fill; class font; namespace detail { struct stylesheet; struct worksheet_impl; struct conditional_format_impl { stylesheet *parent; range_reference target_range; worksheet_impl *target_sheet; std::size_t priority; std::size_t differential_format_id; condition when; optional border_id; optional fill_id; optional font_id; }; } // namespace detail } // namespace xlnt