mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
23 lines
431 B
C++
23 lines
431 B
C++
#pragma once
|
|
|
|
#include <xlnt/cell/comment.hpp>
|
|
|
|
namespace xlnt {
|
|
namespace detail {
|
|
|
|
struct cell_impl;
|
|
|
|
struct comment_impl
|
|
{
|
|
comment_impl();
|
|
comment_impl(cell_impl *parent, const std::string &text, const std::string &author);
|
|
comment_impl(const comment_impl &rhs);
|
|
comment_impl &operator=(const comment_impl &rhs);
|
|
|
|
std::string text_;
|
|
std::string author_;
|
|
};
|
|
|
|
} // namespace detail
|
|
} // namespace xlnt
|