mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
Comment fixes and clarifications
This commit is contained in:
parent
b95919323d
commit
9a82c4fab7
|
@ -64,17 +64,17 @@ public:
|
||||||
worksheet_iterator(const worksheet_iterator &) = default;
|
worksheet_iterator(const worksheet_iterator &) = default;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Assigns the iterator so that it points to the same worksheet in the same workbook.
|
/// Copy assigns the iterator so that it points to the same worksheet in the same workbook.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
worksheet_iterator &operator=(const worksheet_iterator &) = default;
|
worksheet_iterator &operator=(const worksheet_iterator &) = default;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Copy constructs a worksheet iterator from another iterator.
|
/// Move constructs a worksheet iterator from a temporary iterator.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
worksheet_iterator(worksheet_iterator &&) = default;
|
worksheet_iterator(worksheet_iterator &&) = default;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Assigns the iterator so that it points to the same worksheet in the same workbook.
|
/// Move assign the iterator from a temporary iterator
|
||||||
/// </summary>
|
/// </summary>
|
||||||
worksheet_iterator &operator=(worksheet_iterator &&) = default;
|
worksheet_iterator &operator=(worksheet_iterator &&) = default;
|
||||||
|
|
||||||
|
@ -170,17 +170,17 @@ public:
|
||||||
const_worksheet_iterator(const const_worksheet_iterator &) = default;
|
const_worksheet_iterator(const const_worksheet_iterator &) = default;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Assigns the iterator so that it points to the same worksheet in the same workbook.
|
/// Copy assigns the iterator so that it points to the same worksheet in the same workbook.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
const_worksheet_iterator &operator=(const const_worksheet_iterator &) = default;
|
const_worksheet_iterator &operator=(const const_worksheet_iterator &) = default;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Move constructs a worksheet iterator from another iterator.
|
/// Move constructs a worksheet iterator from a temporary iterator.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
const_worksheet_iterator(const_worksheet_iterator &&) = default;
|
const_worksheet_iterator(const_worksheet_iterator &&) = default;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Assigns the iterator from a temporary
|
/// Move assigns the iterator from a temporary iterator
|
||||||
/// </summary>
|
/// </summary>
|
||||||
const_worksheet_iterator &operator=(const_worksheet_iterator &&) = default;
|
const_worksheet_iterator &operator=(const_worksheet_iterator &&) = default;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user