2006-05-06 08:13:20 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-29 19:52:43 +04: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 08:13:20 +04:00
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#ifndef nsParserUtils_h
|
|
|
|
#define nsParserUtils_h
|
2006-05-06 08:13:20 +04:00
|
|
|
|
2012-02-27 15:57:48 +04:00
|
|
|
#include "nsIParserUtils.h"
|
2012-06-13 08:07:59 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2006-05-06 08:13:20 +04:00
|
|
|
|
2018-12-17 12:33:28 +03:00
|
|
|
class nsParserUtils final : public nsIParserUtils {
|
2014-06-27 22:41:03 +04:00
|
|
|
~nsParserUtils() {}
|
2018-03-16 18:26:06 +03:00
|
|
|
|
2006-05-06 08:13:20 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
2012-02-27 15:57:48 +04:00
|
|
|
NS_DECL_NSIPARSERUTILS
|
2006-05-06 08:13:20 +04:00
|
|
|
};
|
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#endif // nsParserUtils_h
|