+ fbx: Parser::IsBinary(), Document::IsBinary()

This commit is contained in:
Alexander Gessler
2012-08-10 21:39:47 +02:00
parent 49cfcf4c07
commit 729e98fef0
4 changed files with 27 additions and 6 deletions

View File

@@ -163,11 +163,12 @@ Scope::~Scope()
// ------------------------------------------------------------------------------------------------
Parser::Parser (const TokenList& tokens)
Parser::Parser (const TokenList& tokens, bool is_binary)
: tokens(tokens)
, last()
, current()
, cursor(tokens.begin())
, is_binary(is_binary)
{
root.reset(new Scope(*this,true));
}