xlnt/source/detail/comment_impl.hpp
2015-11-07 18:37:23 -05:00

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