xlnt/source/detail/style_impl.hpp
Thomas Fussell 300f694f04 missed some
2016-08-18 22:11:59 -04:00

44 lines
723 B
C++

#pragma once
#include <cstddef>
#include <string>
#include <xlnt/utils/optional.hpp>
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<bool> custom_builtin;
bool hidden_style;
optional<std::size_t> builtin_id;
optional<std::size_t> outline_style;
optional<class alignment> alignment;
optional<class border> border;
optional<class fill> fill;
optional<class font> font;
optional<class number_format> number_format;
optional<class protection> protection;
};
} // namespace detail
} // namespace xlnt