mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
25 lines
542 B
C++
25 lines
542 B
C++
#pragma once
|
|
|
|
#include "cell/cell_reference.hpp"
|
|
|
|
namespace xlnt {
|
|
namespace detail {
|
|
|
|
struct worksheet_impl;
|
|
|
|
struct comment_impl
|
|
{
|
|
comment_impl();
|
|
comment_impl(worksheet_impl *parent, const cell_reference &ref, const std::string &text, const std::string &author);
|
|
comment_impl(const comment_impl &rhs);
|
|
comment_impl &operator=(const comment_impl &rhs);
|
|
|
|
worksheet_impl *parent_worksheet_;
|
|
cell_reference parent_cell_;
|
|
std::string text_;
|
|
std::string author_;
|
|
};
|
|
|
|
} // namespace detail
|
|
} // namespace xlnt
|