Bug 1690340 - Part 4: Insert the "Page Source" before the "Extensions for Developers...
[gecko.git] / xpcom / ds / nsINIParserImpl.h
blobc52046447f515e2c6c2035108718fc3553bf9217
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsINIParserImpl_h__
8 #define nsINIParserImpl_h__
10 #include "nsIINIParser.h"
11 #include "nsIFactory.h"
12 #include "mozilla/Attributes.h"
14 #define NS_INIPARSERFACTORY_CID \
15 { \
16 0xdfac10a9, 0xdd24, 0x43cf, { \
17 0xa0, 0x95, 0x6f, 0xfa, 0x2e, 0x4b, 0x6a, 0x6c \
18 } \
21 #define NS_INIPARSERFACTORY_CONTRACTID "@mozilla.org/xpcom/ini-parser-factory;1"
23 class nsINIParserFactory final : public nsIINIParserFactory, public nsIFactory {
24 ~nsINIParserFactory() = default;
26 public:
27 NS_DECL_ISUPPORTS
28 NS_DECL_NSIINIPARSERFACTORY
29 NS_DECL_NSIFACTORY
32 #endif // nsINIParserImpl_h__