Refactored tags so we can emit secondary tags (and named local tags)

This commit is contained in:
Jesse Beder
2010-10-28 23:06:16 +00:00
parent d508203ed8
commit a6afaabcb0
4 changed files with 70 additions and 27 deletions

View File

@@ -19,6 +19,7 @@ namespace YAML
bool WriteAlias(ostream& out, const std::string& str);
bool WriteAnchor(ostream& out, const std::string& str);
bool WriteTag(ostream& out, const std::string& str, bool verbatim);
bool WriteTagWithPrefix(ostream& out, const std::string& prefix, const std::string& tag);
bool WriteBinary(ostream& out, const char *data, std::size_t size);
}
}