Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / xpcom / io / nsScriptableBase64Encoder.h
blob8982657e597ea2e6d8509662afebfd9840ba973c
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 nsScriptableBase64Encoder_h__
8 #define nsScriptableBase64Encoder_h__
10 #include "nsIScriptableBase64Encoder.h"
11 #include "mozilla/Attributes.h"
13 #define NS_SCRIPTABLEBASE64ENCODER_CID \
14 { \
15 0xaaf68860, 0xf849, 0x40ee, { \
16 0xbb, 0x7a, 0xb2, 0x29, 0xbc, 0xe0, 0x36, 0xa3 \
17 } \
19 #define NS_SCRIPTABLEBASE64ENCODER_CONTRACTID \
20 "@mozilla.org/scriptablebase64encoder;1"
22 class nsScriptableBase64Encoder final : public nsIScriptableBase64Encoder {
23 public:
24 NS_DECL_ISUPPORTS
25 NS_DECL_NSISCRIPTABLEBASE64ENCODER
26 private:
27 ~nsScriptableBase64Encoder() = default;
30 #endif