xlnt/source/comment.cpp

28 lines
347 B
C++
Raw Normal View History

2014-07-26 04:39:25 +08:00
#include "cell/comment.hpp"
namespace xlnt {
comment::comment(const std::string &text, const std::string &author) : text_(text), author_(author)
2014-07-26 04:39:25 +08:00
{
}
comment::comment()
2014-07-26 04:39:25 +08:00
{
}
comment::~comment()
{
}
std::string comment::get_author() const
{
return author_;
2014-07-26 04:39:25 +08:00
}
std::string comment::get_text() const
{
return text_;
2014-07-26 04:39:25 +08:00
}
} // namespace xlnt