xlnt/source/detail/comment_impl.hpp
2014-07-21 09:34:57 -04:00

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