Add summary comments

This commit is contained in:
Ted John 2017-02-22 18:00:19 +00:00
parent 40eb2c55fd
commit 9ba51f221b
1 changed files with 6 additions and 0 deletions

View File

@ -25,6 +25,9 @@
#include "../core/StringBuilder.hpp"
#include "IniReader.hpp"
/**
* Simple tuple (start, length) representing a text span in a buffer.
*/
struct Span
{
size_t Start = 0;
@ -38,6 +41,9 @@ struct Span
}
};
/**
* Simple tuple (start, end) inclusive representing a range of lines.
*/
struct LineRange
{
size_t Start = 0;