intl/uconv/src/nsConverterOutputStream.h

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     1 /* vim:set expandtab ts=4 sw=4 sts=4 cin: */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 #ifndef NSCONVERTEROUTPUTSTREAM_H_
     7 #define NSCONVERTEROUTPUTSTREAM_H_
     9 #include "nsIConverterOutputStream.h"
    10 #include "nsCOMPtr.h"
    11 #include "mozilla/Attributes.h"
    13 class nsIUnicodeEncoder;
    14 class nsIOutputStream;
    16 /* ff8780a5-bbb1-4bc5-8ee7-057e7bc5c925 */
    17 #define NS_CONVERTEROUTPUTSTREAM_CID \
    18 { 0xff8780a5, 0xbbb1, 0x4bc5, \
    19   { 0x8e, 0xe7, 0x05, 0x7e, 0x7b, 0xc5, 0xc9, 0x25 } }
    21 class nsConverterOutputStream MOZ_FINAL : public nsIConverterOutputStream {
    22     public:
    23         nsConverterOutputStream() {}
    25         NS_DECL_ISUPPORTS
    26         NS_DECL_NSIUNICHAROUTPUTSTREAM
    27         NS_DECL_NSICONVERTEROUTPUTSTREAM
    29     private:
    30         ~nsConverterOutputStream();
    32         nsCOMPtr<nsIUnicodeEncoder> mConverter;
    33         nsCOMPtr<nsIOutputStream>   mOutStream;
    34 };
    36 #endif

mercurial