xlnt/source/styles/protection.cpp

14 lines
216 B
C++
Raw Normal View History

2014-08-14 06:56:34 +08:00
#include <xlnt/styles/protection.hpp>
namespace xlnt {
protection::protection() : protection(type::unprotected)
{
}
2015-10-24 02:42:36 +08:00
protection::protection(type t) : locked_(t), hidden_(type::unprotected)
{
}
} // namespace xlnt