#pragma once #include #include #include namespace xlnt { class alignment; class border; class fill; class font; class number_format; class protection; namespace detail { struct stylesheet; struct style_impl { stylesheet *parent; std::string name; std::size_t formatting_record_id; optional custom_builtin; bool hidden_style; optional builtin_id; optional outline_style; optional alignment; optional border; optional fill; optional font; optional number_format; optional protection; }; } // namespace detail } // namespace xlnt