2005-06-24 23:44:50 +04:00
|
|
|
/* vim:set expandtab ts=4 sw=4 sts=4 cin: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-12-01 01:50:27 +03:00
|
|
|
|
2005-06-24 23:44:50 +04:00
|
|
|
#ifndef NSCONVERTEROUTPUTSTREAM_H_
|
|
|
|
#define NSCONVERTEROUTPUTSTREAM_H_
|
2001-12-01 01:50:27 +03:00
|
|
|
|
2005-06-24 23:44:50 +04:00
|
|
|
#include "nsIConverterOutputStream.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2012-06-06 03:51:58 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2017-04-27 13:27:03 +03:00
|
|
|
#include "mozilla/Encoding.h"
|
2001-12-01 01:50:27 +03:00
|
|
|
|
2005-06-24 23:44:50 +04:00
|
|
|
class nsIOutputStream;
|
2001-12-01 01:50:27 +03:00
|
|
|
|
2005-06-24 23:44:50 +04:00
|
|
|
/* ff8780a5-bbb1-4bc5-8ee7-057e7bc5c925 */
|
|
|
|
#define NS_CONVERTEROUTPUTSTREAM_CID \
|
|
|
|
{ 0xff8780a5, 0xbbb1, 0x4bc5, \
|
|
|
|
{ 0x8e, 0xe7, 0x05, 0x7e, 0x7b, 0xc5, 0xc9, 0x25 } }
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsConverterOutputStream final : public nsIConverterOutputStream {
|
2005-06-24 23:44:50 +04:00
|
|
|
public:
|
|
|
|
nsConverterOutputStream() {}
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIUNICHAROUTPUTSTREAM
|
|
|
|
NS_DECL_NSICONVERTEROUTPUTSTREAM
|
|
|
|
|
|
|
|
private:
|
|
|
|
~nsConverterOutputStream();
|
|
|
|
|
2017-04-27 13:27:03 +03:00
|
|
|
mozilla::UniquePtr<mozilla::Encoder> mConverter;
|
2005-06-24 23:44:50 +04:00
|
|
|
nsCOMPtr<nsIOutputStream> mOutStream;
|
2001-12-01 01:50:27 +03:00
|
|
|
};
|
|
|
|
|
2005-06-24 23:44:50 +04:00
|
|
|
#endif
|