mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
28 lines
352 B
C++
28 lines
352 B
C++
#include <xlnt/cell/comment.hpp>
|
|
|
|
namespace xlnt {
|
|
|
|
comment::comment(const std::string &text, const std::string &author) : text_(text), author_(author)
|
|
{
|
|
}
|
|
|
|
comment::comment()
|
|
{
|
|
}
|
|
|
|
comment::~comment()
|
|
{
|
|
}
|
|
|
|
std::string comment::get_author() const
|
|
{
|
|
return author_;
|
|
}
|
|
|
|
std::string comment::get_text() const
|
|
{
|
|
return text_;
|
|
}
|
|
|
|
} // namespace xlnt
|