2015-10-14 01:56:07 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <xlnt/cell/comment.hpp>
|
2015-11-08 07:37:23 +08:00
|
|
|
#include <xlnt/utils/string.hpp>
|
2015-10-14 01:56:07 +08:00
|
|
|
|
|
|
|
namespace xlnt {
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
struct cell_impl;
|
|
|
|
|
|
|
|
struct comment_impl
|
|
|
|
{
|
|
|
|
comment_impl();
|
2015-11-05 07:45:03 +08:00
|
|
|
comment_impl(cell_impl *parent, const string &text, const 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-05 07:45:03 +08:00
|
|
|
string text_;
|
|
|
|
string author_;
|
2015-10-14 01:56:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace xlnt
|