mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
20 lines
379 B
C++
20 lines
379 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace YAML
|
|
{
|
|
struct WhitespaceInfo {
|
|
WhitespaceInfo();
|
|
|
|
void SetChompers(char ch);
|
|
void AddBlank(char ch);
|
|
void AddBreak(const std::string& line);
|
|
std::string Join(bool lastline = false);
|
|
|
|
bool leadingBlanks;
|
|
bool fold;
|
|
std::string whitespace, leadingBreaks, trailingBreaks;
|
|
int chomp, increment;
|
|
};
|
|
}
|