21 lines
220 B
C++
21 lines
220 B
C++
#ifndef LINEENDINGS_H
|
|
#define LINEENDINGS_H
|
|
|
|
#include "Span.h"
|
|
|
|
class LineEndings
|
|
{
|
|
public:
|
|
enum Type
|
|
{
|
|
LF,
|
|
CRLF,
|
|
CR,
|
|
COUNT,
|
|
};
|
|
|
|
static const Span spans[COUNT];
|
|
};
|
|
|
|
#endif
|