Moved the scalar-related functions to their own file.

This commit is contained in:
Jesse Beder
2008-06-29 03:11:25 +00:00
parent d076252dff
commit 6c193d6fbd
7 changed files with 378 additions and 352 deletions

View File

@@ -45,20 +45,6 @@ namespace YAML
void GetBlockIndentation(int& indent, std::string& breaks);
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;
};
struct SimpleKey {
SimpleKey(int pos_, int line_, int column_, int flowLevel_);