2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-07-26 19:35:16 +00:00
|
|
|
|
|
|
|
#include "nsBuiltinDecoderStateMachine.h"
|
|
|
|
#include "nsRawReader.h"
|
|
|
|
#include "nsRawDecoder.h"
|
|
|
|
|
2012-11-06 22:33:02 +00:00
|
|
|
nsBuiltinDecoderStateMachine* nsRawDecoder::CreateStateMachine()
|
2010-07-26 19:35:16 +00:00
|
|
|
{
|
2011-09-29 23:34:37 +00:00
|
|
|
return new nsBuiltinDecoderStateMachine(this, new nsRawReader(this), true);
|
2010-07-26 19:35:16 +00:00
|
|
|
}
|