mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
43 lines
668 B
C++
43 lines
668 B
C++
#include <xlnt/cell/cell.hpp>
|
|
#include <xlnt/cell/comment.hpp>
|
|
|
|
#include "detail/comment_impl.hpp"
|
|
|
|
namespace xlnt {
|
|
|
|
comment::comment(detail::comment_impl *d) : d_(d)
|
|
{
|
|
}
|
|
|
|
comment::comment(cell parent, const std::string &text, const std::string &author) : d_(nullptr)
|
|
{
|
|
d_ = parent.get_comment().d_;
|
|
d_->text_ = text;
|
|
d_->author_ = author;
|
|
}
|
|
|
|
comment::comment() : d_(nullptr)
|
|
{
|
|
}
|
|
|
|
comment::~comment()
|
|
{
|
|
}
|
|
|
|
std::string comment::get_author() const
|
|
{
|
|
return d_->author_;
|
|
}
|
|
|
|
std::string comment::get_text() const
|
|
{
|
|
return d_->text_;
|
|
}
|
|
|
|
bool comment::operator==(const xlnt::comment &other) const
|
|
{
|
|
return d_ == other.d_;
|
|
}
|
|
|
|
} // namespace xlnt
|