2015-10-14 01:56:07 +08:00
|
|
|
#include "comment_impl.hpp"
|
|
|
|
|
|
|
|
namespace xlnt {
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
comment_impl::comment_impl()
|
|
|
|
{
|
|
|
|
}
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2015-10-14 01:56:07 +08:00
|
|
|
comment_impl::comment_impl(const comment_impl &rhs)
|
|
|
|
{
|
|
|
|
*this = rhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
comment_impl &comment_impl::operator=(const xlnt::detail::comment_impl &rhs)
|
|
|
|
{
|
|
|
|
text_ = rhs.text_;
|
|
|
|
author_ = rhs.author_;
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2015-10-14 01:56:07 +08:00
|
|
|
return *this;
|
|
|
|
}
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2015-10-14 01:56:07 +08:00
|
|
|
} // namespace detail
|
2015-10-15 06:05:13 +08:00
|
|
|
} // namespace xlnt
|