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