/usr/include/thunderbird-11.0.1/nsIDOMHTMLBRElement.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/dom/interfaces/html/nsIDOMHTMLBRElement.idl
*/
#ifndef __gen_nsIDOMHTMLBRElement_h__
#define __gen_nsIDOMHTMLBRElement_h__
#ifndef __gen_nsIDOMHTMLElement_h__
#include "nsIDOMHTMLElement.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: nsIDOMHTMLBRElement */
#define NS_IDOMHTMLBRELEMENT_IID_STR "595249b7-c889-4e3b-9bc2-a309cab26319"
#define NS_IDOMHTMLBRELEMENT_IID \
{0x595249b7, 0xc889, 0x4e3b, \
{ 0x9b, 0xc2, 0xa3, 0x09, 0xca, 0xb2, 0x63, 0x19 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMHTMLBRElement : public nsIDOMHTMLElement {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLBRELEMENT_IID)
/* attribute DOMString clear; */
NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear) = 0;
NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLBRElement, NS_IDOMHTMLBRELEMENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMHTMLBRELEMENT \
NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear); \
NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMHTMLBRELEMENT(_to) \
NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear) { return _to GetClear(aClear); } \
NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear) { return _to SetClear(aClear); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMHTMLBRELEMENT(_to) \
NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetClear(aClear); } \
NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetClear(aClear); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMHTMLBRElement : public nsIDOMHTMLBRElement
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMHTMLBRELEMENT
nsDOMHTMLBRElement();
private:
~nsDOMHTMLBRElement();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMHTMLBRElement, nsIDOMHTMLBRElement)
nsDOMHTMLBRElement::nsDOMHTMLBRElement()
{
/* member initializers and constructor code */
}
nsDOMHTMLBRElement::~nsDOMHTMLBRElement()
{
/* destructor code */
}
/* attribute DOMString clear; */
NS_IMETHODIMP nsDOMHTMLBRElement::GetClear(nsAString & aClear)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLBRElement::SetClear(const nsAString & aClear)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMHTMLBRElement_h__ */
|