/usr/include/thunderbird/nsIPropertyBag2.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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIPropertyBag2.idl
*/
#ifndef __gen_nsIPropertyBag2_h__
#define __gen_nsIPropertyBag2_h__
#ifndef __gen_nsIPropertyBag_h__
#include "nsIPropertyBag.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: nsIPropertyBag2 */
#define NS_IPROPERTYBAG2_IID_STR "625cfd1e-da1e-4417-9ee9-dbc8e0b3fd79"
#define NS_IPROPERTYBAG2_IID \
{0x625cfd1e, 0xda1e, 0x4417, \
{ 0x9e, 0xe9, 0xdb, 0xc8, 0xe0, 0xb3, 0xfd, 0x79 }}
class NS_NO_VTABLE nsIPropertyBag2 : public nsIPropertyBag {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPROPERTYBAG2_IID)
/* int32_t getPropertyAsInt32 (in AString prop); */
NS_IMETHOD GetPropertyAsInt32(const nsAString & prop, int32_t *_retval) = 0;
/* uint32_t getPropertyAsUint32 (in AString prop); */
NS_IMETHOD GetPropertyAsUint32(const nsAString & prop, uint32_t *_retval) = 0;
/* int64_t getPropertyAsInt64 (in AString prop); */
NS_IMETHOD GetPropertyAsInt64(const nsAString & prop, int64_t *_retval) = 0;
/* uint64_t getPropertyAsUint64 (in AString prop); */
NS_IMETHOD GetPropertyAsUint64(const nsAString & prop, uint64_t *_retval) = 0;
/* double getPropertyAsDouble (in AString prop); */
NS_IMETHOD GetPropertyAsDouble(const nsAString & prop, double *_retval) = 0;
/* AString getPropertyAsAString (in AString prop); */
NS_IMETHOD GetPropertyAsAString(const nsAString & prop, nsAString & _retval) = 0;
/* ACString getPropertyAsACString (in AString prop); */
NS_IMETHOD GetPropertyAsACString(const nsAString & prop, nsACString & _retval) = 0;
/* AUTF8String getPropertyAsAUTF8String (in AString prop); */
NS_IMETHOD GetPropertyAsAUTF8String(const nsAString & prop, nsACString & _retval) = 0;
/* boolean getPropertyAsBool (in AString prop); */
NS_IMETHOD GetPropertyAsBool(const nsAString & prop, bool *_retval) = 0;
/* void getPropertyAsInterface (in AString prop, in nsIIDRef iid, [iid_is (iid), retval] out nsQIResult result); */
NS_IMETHOD GetPropertyAsInterface(const nsAString & prop, const nsIID & iid, void **result) = 0;
/* nsIVariant get (in AString prop); */
NS_IMETHOD Get(const nsAString & prop, nsIVariant * *_retval) = 0;
/* boolean hasKey (in AString prop); */
NS_IMETHOD HasKey(const nsAString & prop, bool *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPropertyBag2, NS_IPROPERTYBAG2_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPROPERTYBAG2 \
NS_IMETHOD GetPropertyAsInt32(const nsAString & prop, int32_t *_retval) override; \
NS_IMETHOD GetPropertyAsUint32(const nsAString & prop, uint32_t *_retval) override; \
NS_IMETHOD GetPropertyAsInt64(const nsAString & prop, int64_t *_retval) override; \
NS_IMETHOD GetPropertyAsUint64(const nsAString & prop, uint64_t *_retval) override; \
NS_IMETHOD GetPropertyAsDouble(const nsAString & prop, double *_retval) override; \
NS_IMETHOD GetPropertyAsAString(const nsAString & prop, nsAString & _retval) override; \
NS_IMETHOD GetPropertyAsACString(const nsAString & prop, nsACString & _retval) override; \
NS_IMETHOD GetPropertyAsAUTF8String(const nsAString & prop, nsACString & _retval) override; \
NS_IMETHOD GetPropertyAsBool(const nsAString & prop, bool *_retval) override; \
NS_IMETHOD GetPropertyAsInterface(const nsAString & prop, const nsIID & iid, void **result) override; \
NS_IMETHOD Get(const nsAString & prop, nsIVariant * *_retval) override; \
NS_IMETHOD HasKey(const nsAString & prop, bool *_retval) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPROPERTYBAG2(_to) \
NS_IMETHOD GetPropertyAsInt32(const nsAString & prop, int32_t *_retval) override { return _to GetPropertyAsInt32(prop, _retval); } \
NS_IMETHOD GetPropertyAsUint32(const nsAString & prop, uint32_t *_retval) override { return _to GetPropertyAsUint32(prop, _retval); } \
NS_IMETHOD GetPropertyAsInt64(const nsAString & prop, int64_t *_retval) override { return _to GetPropertyAsInt64(prop, _retval); } \
NS_IMETHOD GetPropertyAsUint64(const nsAString & prop, uint64_t *_retval) override { return _to GetPropertyAsUint64(prop, _retval); } \
NS_IMETHOD GetPropertyAsDouble(const nsAString & prop, double *_retval) override { return _to GetPropertyAsDouble(prop, _retval); } \
NS_IMETHOD GetPropertyAsAString(const nsAString & prop, nsAString & _retval) override { return _to GetPropertyAsAString(prop, _retval); } \
NS_IMETHOD GetPropertyAsACString(const nsAString & prop, nsACString & _retval) override { return _to GetPropertyAsACString(prop, _retval); } \
NS_IMETHOD GetPropertyAsAUTF8String(const nsAString & prop, nsACString & _retval) override { return _to GetPropertyAsAUTF8String(prop, _retval); } \
NS_IMETHOD GetPropertyAsBool(const nsAString & prop, bool *_retval) override { return _to GetPropertyAsBool(prop, _retval); } \
NS_IMETHOD GetPropertyAsInterface(const nsAString & prop, const nsIID & iid, void **result) override { return _to GetPropertyAsInterface(prop, iid, result); } \
NS_IMETHOD Get(const nsAString & prop, nsIVariant * *_retval) override { return _to Get(prop, _retval); } \
NS_IMETHOD HasKey(const nsAString & prop, bool *_retval) override { return _to HasKey(prop, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPROPERTYBAG2(_to) \
NS_IMETHOD GetPropertyAsInt32(const nsAString & prop, int32_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsInt32(prop, _retval); } \
NS_IMETHOD GetPropertyAsUint32(const nsAString & prop, uint32_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsUint32(prop, _retval); } \
NS_IMETHOD GetPropertyAsInt64(const nsAString & prop, int64_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsInt64(prop, _retval); } \
NS_IMETHOD GetPropertyAsUint64(const nsAString & prop, uint64_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsUint64(prop, _retval); } \
NS_IMETHOD GetPropertyAsDouble(const nsAString & prop, double *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsDouble(prop, _retval); } \
NS_IMETHOD GetPropertyAsAString(const nsAString & prop, nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsAString(prop, _retval); } \
NS_IMETHOD GetPropertyAsACString(const nsAString & prop, nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsACString(prop, _retval); } \
NS_IMETHOD GetPropertyAsAUTF8String(const nsAString & prop, nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsAUTF8String(prop, _retval); } \
NS_IMETHOD GetPropertyAsBool(const nsAString & prop, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsBool(prop, _retval); } \
NS_IMETHOD GetPropertyAsInterface(const nsAString & prop, const nsIID & iid, void **result) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPropertyAsInterface(prop, iid, result); } \
NS_IMETHOD Get(const nsAString & prop, nsIVariant * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Get(prop, _retval); } \
NS_IMETHOD HasKey(const nsAString & prop, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->HasKey(prop, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPropertyBag2 : public nsIPropertyBag2
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPROPERTYBAG2
nsPropertyBag2();
private:
~nsPropertyBag2();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsPropertyBag2, nsIPropertyBag2)
nsPropertyBag2::nsPropertyBag2()
{
/* member initializers and constructor code */
}
nsPropertyBag2::~nsPropertyBag2()
{
/* destructor code */
}
/* int32_t getPropertyAsInt32 (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsInt32(const nsAString & prop, int32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* uint32_t getPropertyAsUint32 (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsUint32(const nsAString & prop, uint32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* int64_t getPropertyAsInt64 (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsInt64(const nsAString & prop, int64_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* uint64_t getPropertyAsUint64 (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsUint64(const nsAString & prop, uint64_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* double getPropertyAsDouble (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsDouble(const nsAString & prop, double *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString getPropertyAsAString (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsAString(const nsAString & prop, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* ACString getPropertyAsACString (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsACString(const nsAString & prop, nsACString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AUTF8String getPropertyAsAUTF8String (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsAUTF8String(const nsAString & prop, nsACString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean getPropertyAsBool (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsBool(const nsAString & prop, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void getPropertyAsInterface (in AString prop, in nsIIDRef iid, [iid_is (iid), retval] out nsQIResult result); */
NS_IMETHODIMP nsPropertyBag2::GetPropertyAsInterface(const nsAString & prop, const nsIID & iid, void **result)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIVariant get (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::Get(const nsAString & prop, nsIVariant * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean hasKey (in AString prop); */
NS_IMETHODIMP nsPropertyBag2::HasKey(const nsAString & prop, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIPropertyBag2_h__ */
|