xpcom/ds/nsINIParserImpl.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xpcom/ds/nsINIParserImpl.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.7 +
     1.8 +#ifndef nsINIParserImpl_h__
     1.9 +#define nsINIParserImpl_h__
    1.10 +
    1.11 +#include "nsIINIParser.h"
    1.12 +#include "nsIFactory.h"
    1.13 +#include "mozilla/Attributes.h"
    1.14 +
    1.15 +#define NS_INIPARSERFACTORY_CID \
    1.16 +{ 0xdfac10a9, 0xdd24, 0x43cf, \
    1.17 +  { 0xa0, 0x95, 0x6f, 0xfa, 0x2e, 0x4b, 0x6a, 0x6c } }
    1.18 +
    1.19 +#define NS_INIPARSERFACTORY_CONTRACTID \
    1.20 +  "@mozilla.org/xpcom/ini-parser-factory;1"
    1.21 +
    1.22 +class nsINIParserFactory MOZ_FINAL :
    1.23 +  public nsIINIParserFactory,
    1.24 +  public nsIFactory
    1.25 +{
    1.26 +public:
    1.27 +  NS_DECL_ISUPPORTS
    1.28 +  NS_DECL_NSIINIPARSERFACTORY
    1.29 +  NS_DECL_NSIFACTORY
    1.30 +};
    1.31 +
    1.32 +#endif // nsINIParserImpl_h__

mercurial