2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2011-11-20 17:04:11 +04:00
|
|
|
#ifndef cmNewLineStyle_h
|
|
|
|
#define cmNewLineStyle_h
|
|
|
|
|
2016-08-24 01:29:15 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2011-11-20 17:04:11 +04:00
|
|
|
|
|
|
|
class cmNewLineStyle
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmNewLineStyle();
|
|
|
|
|
|
|
|
enum Style
|
|
|
|
{
|
|
|
|
Invalid,
|
2016-05-16 17:34:04 +03:00
|
|
|
// LF = '\n', 0x0A, 10
|
|
|
|
// CR = '\r', 0x0D, 13
|
|
|
|
LF, // Unix
|
|
|
|
CRLF // Dos
|
2011-11-20 17:04:11 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
void SetStyle(Style);
|
|
|
|
Style GetStyle() const;
|
|
|
|
|
|
|
|
bool IsValid() const;
|
|
|
|
|
|
|
|
bool ReadFromArguments(const std::vector<std::string>& args,
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string& errorString);
|
2011-11-20 17:04:11 +04:00
|
|
|
|
|
|
|
const std::string GetCharacters() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Style NewLineStyle;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|