2015-10-14 01:56:07 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <xlnt/cell/comment.hpp>
|
|
|
|
|
|
|
|
namespace xlnt {
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
struct cell_impl;
|
|
|
|
|
|
|
|
struct comment_impl
|
|
|
|
{
|
|
|
|
comment_impl();
|
2015-11-11 07:58:54 +08:00
|
|
|
comment_impl(cell_impl *parent, const std::string &text, const std::string &author);
|
2015-10-14 01:56:07 +08:00
|
|
|
comment_impl(const comment_impl &rhs);
|
|
|
|
comment_impl &operator=(const comment_impl &rhs);
|
2015-11-01 22:43:01 +08:00
|
|
|
|
2015-11-11 07:58:54 +08:00
|
|
|
std::string text_;
|
|
|
|
std::string author_;
|
2015-10-14 01:56:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace xlnt
|