xlnt/source/style.cpp
2014-07-29 18:01:54 -04:00

20 lines
361 B
C++

#include "styles/style.hpp"
namespace xlnt {
style::style(const style &rhs) : number_format_(rhs.number_format_), protection_(rhs.protection_)
{
}
void style::set_protection(xlnt::protection protection)
{
protection_ = protection;
}
void style::set_number_format(xlnt::number_format format)
{
number_format_ = format;
}
} // namespace xlnt