2005-06-24 19:44:50 +00:00
|
|
|
/* vim:set expandtab ts=4 sw=4 sts=4 cin: */
|
2012-05-21 11:12:37 +00: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-11-30 22:50:27 +00:00
|
|
|
|
2005-06-24 19:44:50 +00:00
|
|
|
#ifndef NSCONVERTEROUTPUTSTREAM_H_
|
|
|
|
#define NSCONVERTEROUTPUTSTREAM_H_
|
2001-11-30 22:50:27 +00:00
|
|
|
|
2005-06-24 19:44:50 +00:00
|
|
|
#include "nsIConverterOutputStream.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2012-06-05 23:51:58 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2001-11-30 22:50:27 +00:00
|
|
|
|
2005-06-24 19:44:50 +00:00
|
|
|
class nsIUnicodeEncoder;
|
|
|
|
class nsIOutputStream;
|
2001-11-30 22:50:27 +00:00
|
|
|
|
2005-06-24 19:44:50 +00:00
|
|
|
/* ff8780a5-bbb1-4bc5-8ee7-057e7bc5c925 */
|
|
|
|
#define NS_CONVERTEROUTPUTSTREAM_CID \
|
|
|
|
{ 0xff8780a5, 0xbbb1, 0x4bc5, \
|
|
|
|
{ 0x8e, 0xe7, 0x05, 0x7e, 0x7b, 0xc5, 0xc9, 0x25 } }
|
|
|
|
|
2012-06-05 23:51:58 +00:00
|
|
|
class nsConverterOutputStream MOZ_FINAL : public nsIConverterOutputStream {
|
2005-06-24 19:44:50 +00:00
|
|
|
public:
|
|
|
|
nsConverterOutputStream() {}
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIUNICHAROUTPUTSTREAM
|
|
|
|
NS_DECL_NSICONVERTEROUTPUTSTREAM
|
|
|
|
|
|
|
|
private:
|
|
|
|
~nsConverterOutputStream();
|
|
|
|
|
|
|
|
nsCOMPtr<nsIUnicodeEncoder> mConverter;
|
|
|
|
nsCOMPtr<nsIOutputStream> mOutStream;
|
2001-11-30 22:50:27 +00:00
|
|
|
};
|
|
|
|
|
2005-06-24 19:44:50 +00:00
|
|
|
#endif
|