2006-05-06 04:13:20 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-29 16:52:43 +01: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/. */
|
2006-05-06 04:13:20 +00:00
|
|
|
|
2012-02-27 13:57:48 +02:00
|
|
|
#ifndef nsParserUtils_h_
|
|
|
|
#define nsParserUtils_h_
|
2006-05-06 04:13:20 +00:00
|
|
|
|
|
|
|
#include "nsIScriptableUnescapeHTML.h"
|
2012-02-27 13:57:48 +02:00
|
|
|
#include "nsIParserUtils.h"
|
2012-06-13 00:07:59 -04:00
|
|
|
#include "mozilla/Attributes.h"
|
2006-05-06 04:13:20 +00:00
|
|
|
|
2012-06-13 00:07:59 -04:00
|
|
|
class nsParserUtils MOZ_FINAL : public nsIScriptableUnescapeHTML,
|
|
|
|
public nsIParserUtils
|
2006-05-06 04:13:20 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSISCRIPTABLEUNESCAPEHTML
|
2012-02-27 13:57:48 +02:00
|
|
|
NS_DECL_NSIPARSERUTILS
|
2006-05-06 04:13:20 +00:00
|
|
|
};
|
|
|
|
|
2012-02-27 13:57:48 +02:00
|
|
|
#endif // nsParserUtils_h_
|