mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
25 lines
379 B
C++
25 lines
379 B
C++
|
#include "comment_impl.hpp"
|
||
|
|
||
|
|
||
|
namespace xlnt {
|
||
|
namespace detail {
|
||
|
|
||
|
comment_impl::comment_impl()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
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_;
|
||
|
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
} // namespace detail
|
||
|
} // namespace xlnt
|