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