Merged r366:387 from the jbeder-event-api branch

This commit is contained in:
Jesse Beder
2010-10-18 06:45:03 +00:00
parent 0a02403fb0
commit a71c03a18b
35 changed files with 1280 additions and 634 deletions

View File

@@ -8,7 +8,7 @@
namespace YAML
{
struct Token;
struct ParserState;
struct Directives;
struct Tag {
enum TYPE {
@@ -16,7 +16,7 @@ namespace YAML
};
Tag(const Token& token);
const std::string Translate(const ParserState& state);
const std::string Translate(const Directives& directives);
TYPE type;
std::string handle, value;