2014-06-30 19:39:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2006-07-21 20:28:51 +04:00
|
|
|
|
|
|
|
#ifndef nsUnicharInputStream_h__
|
|
|
|
#define nsUnicharInputStream_h__
|
|
|
|
|
|
|
|
#include "nsISimpleUnicharStreamFactory.h"
|
|
|
|
#include "nsIUnicharInputStream.h"
|
|
|
|
#include "nsIFactory.h"
|
|
|
|
|
|
|
|
// {428DCA6F-1A0F-4cda-B516-0D5244745A6A}
|
|
|
|
#define NS_SIMPLE_UNICHAR_STREAM_FACTORY_CID \
|
|
|
|
{ 0x428dca6f, 0x1a0f, 0x4cda, { 0xb5, 0x16, 0xd, 0x52, 0x44, 0x74, 0x5a, 0x6a } }
|
|
|
|
|
2014-05-15 00:15:46 +04:00
|
|
|
class nsSimpleUnicharStreamFactory
|
|
|
|
: public nsIFactory
|
|
|
|
, private nsISimpleUnicharStreamFactory
|
2006-07-21 20:28:51 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-05-15 00:15:46 +04:00
|
|
|
nsSimpleUnicharStreamFactory()
|
|
|
|
{
|
|
|
|
}
|
2006-07-21 20:28:51 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIFACTORY
|
|
|
|
NS_DECL_NSISIMPLEUNICHARSTREAMFACTORY
|
|
|
|
|
2011-08-18 17:46:39 +04:00
|
|
|
static nsSimpleUnicharStreamFactory* GetInstance();
|
2006-07-21 20:28:51 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsUnicharInputStream_h__
|