mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
18 lines
322 B
C++
18 lines
322 B
C++
#include "crt.h"
|
|
#include "iterpriv.h"
|
|
|
|
namespace YAML
|
|
{
|
|
IterPriv::IterPriv(): type(IT_NONE)
|
|
{
|
|
}
|
|
|
|
IterPriv::IterPriv(std::vector <Node *>::const_iterator it): seqIter(it), type(IT_SEQ)
|
|
{
|
|
}
|
|
|
|
IterPriv::IterPriv(std::map <Node *, Node *, ltnode>::const_iterator it): mapIter(it), type(IT_MAP)
|
|
{
|
|
}
|
|
}
|