/usr/include/thunderbird/nsIDOMAttr.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.
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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMAttr.idl
*/
#ifndef __gen_nsIDOMAttr_h__
#define __gen_nsIDOMAttr_h__
#ifndef __gen_nsIDOMNode_h__
#include "nsIDOMNode.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: nsIDOMAttr */
#define NS_IDOMATTR_IID_STR "7db491e8-a3a3-4432-ad67-e6c33e24ac6d"
#define NS_IDOMATTR_IID \
{0x7db491e8, 0xa3a3, 0x4432, \
{ 0xad, 0x67, 0xe6, 0xc3, 0x3e, 0x24, 0xac, 0x6d }}
class NS_NO_VTABLE nsIDOMAttr : public nsIDOMNode {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMATTR_IID)
/* readonly attribute DOMString name; */
NS_IMETHOD GetName(nsAString & aName) = 0;
/* readonly attribute boolean specified; */
NS_IMETHOD GetSpecified(bool *aSpecified) = 0;
/* attribute DOMString value; */
NS_IMETHOD GetValue(nsAString & aValue) = 0;
NS_IMETHOD SetValue(const nsAString & aValue) = 0;
/* readonly attribute nsIDOMElement ownerElement; */
NS_IMETHOD GetOwnerElement(nsIDOMElement * *aOwnerElement) = 0;
/* readonly attribute boolean isId; */
NS_IMETHOD GetIsId(bool *aIsId) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMAttr, NS_IDOMATTR_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMATTR \
NS_IMETHOD GetName(nsAString & aName) override; \
NS_IMETHOD GetSpecified(bool *aSpecified) override; \
NS_IMETHOD GetValue(nsAString & aValue) override; \
NS_IMETHOD SetValue(const nsAString & aValue) override; \
NS_IMETHOD GetOwnerElement(nsIDOMElement * *aOwnerElement) override; \
NS_IMETHOD GetIsId(bool *aIsId) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMATTR(_to) \
NS_IMETHOD GetName(nsAString & aName) override { return _to GetName(aName); } \
NS_IMETHOD GetSpecified(bool *aSpecified) override { return _to GetSpecified(aSpecified); } \
NS_IMETHOD GetValue(nsAString & aValue) override { return _to GetValue(aValue); } \
NS_IMETHOD SetValue(const nsAString & aValue) override { return _to SetValue(aValue); } \
NS_IMETHOD GetOwnerElement(nsIDOMElement * *aOwnerElement) override { return _to GetOwnerElement(aOwnerElement); } \
NS_IMETHOD GetIsId(bool *aIsId) override { return _to GetIsId(aIsId); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMATTR(_to) \
NS_IMETHOD GetName(nsAString & aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_IMETHOD GetSpecified(bool *aSpecified) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSpecified(aSpecified); } \
NS_IMETHOD GetValue(nsAString & aValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetValue(aValue); } \
NS_IMETHOD SetValue(const nsAString & aValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetValue(aValue); } \
NS_IMETHOD GetOwnerElement(nsIDOMElement * *aOwnerElement) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOwnerElement(aOwnerElement); } \
NS_IMETHOD GetIsId(bool *aIsId) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsId(aIsId); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMAttr : public nsIDOMAttr
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMATTR
nsDOMAttr();
private:
~nsDOMAttr();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMAttr, nsIDOMAttr)
nsDOMAttr::nsDOMAttr()
{
/* member initializers and constructor code */
}
nsDOMAttr::~nsDOMAttr()
{
/* destructor code */
}
/* readonly attribute DOMString name; */
NS_IMETHODIMP nsDOMAttr::GetName(nsAString & aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean specified; */
NS_IMETHODIMP nsDOMAttr::GetSpecified(bool *aSpecified)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString value; */
NS_IMETHODIMP nsDOMAttr::GetValue(nsAString & aValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMAttr::SetValue(const nsAString & aValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMElement ownerElement; */
NS_IMETHODIMP nsDOMAttr::GetOwnerElement(nsIDOMElement * *aOwnerElement)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isId; */
NS_IMETHODIMP nsDOMAttr::GetIsId(bool *aIsId)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMAttr_h__ */
|