iterpriv.cpp 322 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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)
	{
	}
}