/usr/include/thunderbird/nsIWritablePropertyBag2.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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIWritablePropertyBag2.idl
*/
#ifndef __gen_nsIWritablePropertyBag2_h__
#define __gen_nsIWritablePropertyBag2_h__
#ifndef __gen_nsIPropertyBag2_h__
#include "nsIPropertyBag2.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: nsIWritablePropertyBag2 */
#define NS_IWRITABLEPROPERTYBAG2_IID_STR "9cfd1587-360e-4957-a58f-4c2b1c5e7ed9"
#define NS_IWRITABLEPROPERTYBAG2_IID \
{0x9cfd1587, 0x360e, 0x4957, \
{ 0xa5, 0x8f, 0x4c, 0x2b, 0x1c, 0x5e, 0x7e, 0xd9 }}
class NS_NO_VTABLE nsIWritablePropertyBag2 : public nsIPropertyBag2 {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IWRITABLEPROPERTYBAG2_IID)
/* void setPropertyAsInt32 (in AString prop, in int32_t value); */
NS_IMETHOD SetPropertyAsInt32(const nsAString & prop, int32_t value) = 0;
/* void setPropertyAsUint32 (in AString prop, in uint32_t value); */
NS_IMETHOD SetPropertyAsUint32(const nsAString & prop, uint32_t value) = 0;
/* void setPropertyAsInt64 (in AString prop, in int64_t value); */
NS_IMETHOD SetPropertyAsInt64(const nsAString & prop, int64_t value) = 0;
/* void setPropertyAsUint64 (in AString prop, in uint64_t value); */
NS_IMETHOD SetPropertyAsUint64(const nsAString & prop, uint64_t value) = 0;
/* void setPropertyAsDouble (in AString prop, in double value); */
NS_IMETHOD SetPropertyAsDouble(const nsAString & prop, double value) = 0;
/* void setPropertyAsAString (in AString prop, in AString value); */
NS_IMETHOD SetPropertyAsAString(const nsAString & prop, const nsAString & value) = 0;
/* void setPropertyAsACString (in AString prop, in ACString value); */
NS_IMETHOD SetPropertyAsACString(const nsAString & prop, const nsACString & value) = 0;
/* void setPropertyAsAUTF8String (in AString prop, in AUTF8String value); */
NS_IMETHOD SetPropertyAsAUTF8String(const nsAString & prop, const nsACString & value) = 0;
/* void setPropertyAsBool (in AString prop, in boolean value); */
NS_IMETHOD SetPropertyAsBool(const nsAString & prop, bool value) = 0;
/* void setPropertyAsInterface (in AString prop, in nsISupports value); */
NS_IMETHOD SetPropertyAsInterface(const nsAString & prop, nsISupports *value) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIWritablePropertyBag2, NS_IWRITABLEPROPERTYBAG2_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIWRITABLEPROPERTYBAG2 \
NS_IMETHOD SetPropertyAsInt32(const nsAString & prop, int32_t value) override; \
NS_IMETHOD SetPropertyAsUint32(const nsAString & prop, uint32_t value) override; \
NS_IMETHOD SetPropertyAsInt64(const nsAString & prop, int64_t value) override; \
NS_IMETHOD SetPropertyAsUint64(const nsAString & prop, uint64_t value) override; \
NS_IMETHOD SetPropertyAsDouble(const nsAString & prop, double value) override; \
NS_IMETHOD SetPropertyAsAString(const nsAString & prop, const nsAString & value) override; \
NS_IMETHOD SetPropertyAsACString(const nsAString & prop, const nsACString & value) override; \
NS_IMETHOD SetPropertyAsAUTF8String(const nsAString & prop, const nsACString & value) override; \
NS_IMETHOD SetPropertyAsBool(const nsAString & prop, bool value) override; \
NS_IMETHOD SetPropertyAsInterface(const nsAString & prop, nsISupports *value) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIWRITABLEPROPERTYBAG2(_to) \
NS_IMETHOD SetPropertyAsInt32(const nsAString & prop, int32_t value) override { return _to SetPropertyAsInt32(prop, value); } \
NS_IMETHOD SetPropertyAsUint32(const nsAString & prop, uint32_t value) override { return _to SetPropertyAsUint32(prop, value); } \
NS_IMETHOD SetPropertyAsInt64(const nsAString & prop, int64_t value) override { return _to SetPropertyAsInt64(prop, value); } \
NS_IMETHOD SetPropertyAsUint64(const nsAString & prop, uint64_t value) override { return _to SetPropertyAsUint64(prop, value); } \
NS_IMETHOD SetPropertyAsDouble(const nsAString & prop, double value) override { return _to SetPropertyAsDouble(prop, value); } \
NS_IMETHOD SetPropertyAsAString(const nsAString & prop, const nsAString & value) override { return _to SetPropertyAsAString(prop, value); } \
NS_IMETHOD SetPropertyAsACString(const nsAString & prop, const nsACString & value) override { return _to SetPropertyAsACString(prop, value); } \
NS_IMETHOD SetPropertyAsAUTF8String(const nsAString & prop, const nsACString & value) override { return _to SetPropertyAsAUTF8String(prop, value); } \
NS_IMETHOD SetPropertyAsBool(const nsAString & prop, bool value) override { return _to SetPropertyAsBool(prop, value); } \
NS_IMETHOD SetPropertyAsInterface(const nsAString & prop, nsISupports *value) override { return _to SetPropertyAsInterface(prop, 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_NSIWRITABLEPROPERTYBAG2(_to) \
NS_IMETHOD SetPropertyAsInt32(const nsAString & prop, int32_t value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsInt32(prop, value); } \
NS_IMETHOD SetPropertyAsUint32(const nsAString & prop, uint32_t value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsUint32(prop, value); } \
NS_IMETHOD SetPropertyAsInt64(const nsAString & prop, int64_t value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsInt64(prop, value); } \
NS_IMETHOD SetPropertyAsUint64(const nsAString & prop, uint64_t value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsUint64(prop, value); } \
NS_IMETHOD SetPropertyAsDouble(const nsAString & prop, double value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsDouble(prop, value); } \
NS_IMETHOD SetPropertyAsAString(const nsAString & prop, const nsAString & value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsAString(prop, value); } \
NS_IMETHOD SetPropertyAsACString(const nsAString & prop, const nsACString & value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsACString(prop, value); } \
NS_IMETHOD SetPropertyAsAUTF8String(const nsAString & prop, const nsACString & value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsAUTF8String(prop, value); } \
NS_IMETHOD SetPropertyAsBool(const nsAString & prop, bool value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsBool(prop, value); } \
NS_IMETHOD SetPropertyAsInterface(const nsAString & prop, nsISupports *value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPropertyAsInterface(prop, value); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsWritablePropertyBag2 : public nsIWritablePropertyBag2
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIWRITABLEPROPERTYBAG2
nsWritablePropertyBag2();
private:
~nsWritablePropertyBag2();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsWritablePropertyBag2, nsIWritablePropertyBag2)
nsWritablePropertyBag2::nsWritablePropertyBag2()
{
/* member initializers and constructor code */
}
nsWritablePropertyBag2::~nsWritablePropertyBag2()
{
/* destructor code */
}
/* void setPropertyAsInt32 (in AString prop, in int32_t value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsInt32(const nsAString & prop, int32_t value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPropertyAsUint32 (in AString prop, in uint32_t value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsUint32(const nsAString & prop, uint32_t value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPropertyAsInt64 (in AString prop, in int64_t value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsInt64(const nsAString & prop, int64_t value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPropertyAsUint64 (in AString prop, in uint64_t value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsUint64(const nsAString & prop, uint64_t value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPropertyAsDouble (in AString prop, in double value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsDouble(const nsAString & prop, double value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPropertyAsAString (in AString prop, in AString value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsAString(const nsAString & prop, const nsAString & value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPropertyAsACString (in AString prop, in ACString value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsACString(const nsAString & prop, const nsACString & value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPropertyAsAUTF8String (in AString prop, in AUTF8String value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsAUTF8String(const nsAString & prop, const nsACString & value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPropertyAsBool (in AString prop, in boolean value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsBool(const nsAString & prop, bool value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setPropertyAsInterface (in AString prop, in nsISupports value); */
NS_IMETHODIMP nsWritablePropertyBag2::SetPropertyAsInterface(const nsAString & prop, nsISupports *value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIWritablePropertyBag2_h__ */
|