|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21572/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/netwerk/streamconv/public/nsITXTToHTMLConv.idl
*/
#ifndef __gen_nsITXTToHTMLConv_h__
#define __gen_nsITXTToHTMLConv_h__
#ifndef __gen_nsIStreamConverter_h__
#include "nsIStreamConverter.h"
#endif
#ifndef __gen_nsrootidl_h__
#include "nsrootidl.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsITXTToHTMLConv */
#define NS_ITXTTOHTMLCONV_IID_STR "933355f6-1dd2-11b2-a9b0-d335b9e35983"
#define NS_ITXTTOHTMLCONV_IID \
{0x933355f6, 0x1dd2, 0x11b2, \
{ 0xa9, 0xb0, 0xd3, 0x35, 0xb9, 0xe3, 0x59, 0x83 }}
class NS_NO_VTABLE nsITXTToHTMLConv : public nsIStreamConverter {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ITXTTOHTMLCONV_IID)
/* void setTitle (in wstring text); */
NS_IMETHOD SetTitle(const PRUnichar * text) = 0;
/* void preFormatHTML (in boolean value); */
NS_IMETHOD PreFormatHTML(bool value) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsITXTToHTMLConv, NS_ITXTTOHTMLCONV_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSITXTTOHTMLCONV \
NS_IMETHOD SetTitle(const PRUnichar * text); \
NS_IMETHOD PreFormatHTML(bool value);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSITXTTOHTMLCONV(_to) \
NS_IMETHOD SetTitle(const PRUnichar * text) { return _to SetTitle(text); } \
NS_IMETHOD PreFormatHTML(bool value) { return _to PreFormatHTML(value); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSITXTTOHTMLCONV(_to) \
NS_IMETHOD SetTitle(const PRUnichar * text) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTitle(text); } \
NS_IMETHOD PreFormatHTML(bool value) { return !_to ? NS_ERROR_NULL_POINTER : _to->PreFormatHTML(value); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsTXTToHTMLConv : public nsITXTToHTMLConv
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSITXTTOHTMLCONV
nsTXTToHTMLConv();
private:
~nsTXTToHTMLConv();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsTXTToHTMLConv, nsITXTToHTMLConv)
nsTXTToHTMLConv::nsTXTToHTMLConv()
{
/* member initializers and constructor code */
}
nsTXTToHTMLConv::~nsTXTToHTMLConv()
{
/* destructor code */
}
/* void setTitle (in wstring text); */
NS_IMETHODIMP nsTXTToHTMLConv::SetTitle(const PRUnichar * text)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void preFormatHTML (in boolean value); */
NS_IMETHODIMP nsTXTToHTMLConv::PreFormatHTML(bool value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsITXTToHTMLConv_h__ */