Bumping manifests a=b2g-bump
[gecko.git] / xpcom / io / nsScriptableBase64Encoder.h
blobaf4f786cee9af5d47a71747cd1992967e4c85f5e
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 {0xaaf68860, 0xf849, 0x40ee, \
15 {0xbb, 0x7a, 0xb2, 0x29, 0xbc, 0xe0, 0x36, 0xa3} }
16 #define NS_SCRIPTABLEBASE64ENCODER_CONTRACTID \
17 "@mozilla.org/scriptablebase64encoder;1"
19 class nsScriptableBase64Encoder MOZ_FINAL : public nsIScriptableBase64Encoder
21 public:
22 NS_DECL_ISUPPORTS
23 NS_DECL_NSISCRIPTABLEBASE64ENCODER
24 private:
25 ~nsScriptableBase64Encoder()
30 #endif