xlnt/source/styles/protection.cpp

14 lines
216 B
C++
Raw Normal View History

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