xlnt/source/detail/cell_impl.cpp

16 lines
339 B
C++
Raw Normal View History

2014-06-06 04:19:31 +08:00
#include "cell_impl.hpp"
2014-05-31 06:42:25 +08:00
namespace xlnt {
namespace detail {
2014-06-05 06:42:17 +08:00
cell_impl::cell_impl() : type_(cell::type::null), column(0), row(0), style_(nullptr)
2014-05-31 06:42:25 +08:00
{
}
2014-06-05 06:42:17 +08:00
cell_impl::cell_impl(int column_index, int row_index) : type_(cell::type::null), column(column_index), row(row_index), style_(nullptr)
2014-05-31 06:42:25 +08:00
{
}
} // namespace detail
} // namespace xlnt