xlnt/source/detail/cell_impl.cpp
2014-06-05 17:42:15 -04:00

17 lines
433 B
C++

#include "cell_impl.hpp"
#include "worksheet/worksheet.hpp"
namespace xlnt {
namespace detail {
cell_impl::cell_impl() : parent_(nullptr), type_(cell::type::null), column(0), row(0), style_(nullptr)
{
}
cell_impl::cell_impl(worksheet_impl *parent, int column_index, int row_index) : parent_(parent), type_(cell::type::null), column(column_index), row(row_index), style_(nullptr)
{
}
} // namespace detail
} // namespace xlnt