Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / xpcom / base / nsMacPreferencesReader.h
blob40d5af553a71cb73763378ba05213756ecfcde08
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #ifndef MacPreferencesReader_h__
6 #define MacPreferencesReader_h__
8 //-----------------------------------------------------------------------------
10 #include "nsIMacPreferencesReader.h"
12 #define NS_MACPREFERENCESREADER_CID \
13 { \
14 0xb0f20595, 0x88ce, 0x4738, { \
15 0xa1, 0xa4, 0x24, 0xde, 0x78, 0xeb, 0x80, 0x51 \
16 } \
18 #define NS_MACPREFERENCESREADER_CONTRACTID \
19 "@mozilla.org/mac-preferences-reader;1"
21 //-----------------------------------------------------------------------------
23 class nsMacPreferencesReader : public nsIMacPreferencesReader {
24 public:
25 NS_DECL_ISUPPORTS
26 NS_DECL_NSIMACPREFERENCESREADER
28 nsMacPreferencesReader(){};
30 protected:
31 virtual ~nsMacPreferencesReader() = default;
34 #endif // MacPreferencesReader_h__