/src/mozilla-central/xpcom/io/nsScriptableBase64Encoder.h
Line | Count | Source (jump to first uncovered line) |
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/. */ |
6 | | |
7 | | #ifndef nsScriptableBase64Encoder_h__ |
8 | | #define nsScriptableBase64Encoder_h__ |
9 | | |
10 | | #include "nsIScriptableBase64Encoder.h" |
11 | | #include "mozilla/Attributes.h" |
12 | | |
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" |
18 | | |
19 | | class nsScriptableBase64Encoder final : public nsIScriptableBase64Encoder |
20 | | { |
21 | | public: |
22 | | NS_DECL_ISUPPORTS |
23 | | NS_DECL_NSISCRIPTABLEBASE64ENCODER |
24 | | private: |
25 | | ~nsScriptableBase64Encoder() |
26 | 0 | { |
27 | 0 | } |
28 | | }; |
29 | | |
30 | | #endif |