This commit is contained in:
beder
2008-07-31 19:41:11 +00:00
parent 89ed418b83
commit 2601f5fd49
9 changed files with 37 additions and 0 deletions

View File

@@ -144,6 +144,14 @@ namespace YAML
}
}
CONTENT_TYPE Node::GetType() const
{
if(!m_pContent)
return CT_NONE;
return m_pContent->GetType();
}
// begin
// Returns an iterator to the beginning of this (sequence or map).
Iterator Node::begin() const