/usr/include/thunderbird/nsIAbBooleanExpression.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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIAbBooleanExpression.idl
*/
#ifndef __gen_nsIAbBooleanExpression_h__
#define __gen_nsIAbBooleanExpression_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIArray; /* forward declaration */
typedef int32_t nsAbBooleanConditionType;
/* starting interface: nsIAbBooleanConditionTypes */
#define NS_IABBOOLEANCONDITIONTYPES_IID_STR "f51387b1-5aef-4a1c-830e-7cd3b02366ce"
#define NS_IABBOOLEANCONDITIONTYPES_IID \
{0xf51387b1, 0x5aef, 0x4a1c, \
{ 0x83, 0x0e, 0x7c, 0xd3, 0xb0, 0x23, 0x66, 0xce }}
class NS_NO_VTABLE nsIAbBooleanConditionTypes {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IABBOOLEANCONDITIONTYPES_IID)
enum {
Exists = 0,
DoesNotExist = 1,
Contains = 2,
DoesNotContain = 3,
Is = 4,
IsNot = 5,
BeginsWith = 6,
EndsWith = 7,
LessThan = 8,
GreaterThan = 9,
SoundsLike = 10,
RegExp = 11
};
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAbBooleanConditionTypes, NS_IABBOOLEANCONDITIONTYPES_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIABBOOLEANCONDITIONTYPES \
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIABBOOLEANCONDITIONTYPES(_to) \
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIABBOOLEANCONDITIONTYPES(_to) \
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsAbBooleanConditionTypes : public nsIAbBooleanConditionTypes
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIABBOOLEANCONDITIONTYPES
nsAbBooleanConditionTypes();
private:
~nsAbBooleanConditionTypes();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsAbBooleanConditionTypes, nsIAbBooleanConditionTypes)
nsAbBooleanConditionTypes::nsAbBooleanConditionTypes()
{
/* member initializers and constructor code */
}
nsAbBooleanConditionTypes::~nsAbBooleanConditionTypes()
{
/* destructor code */
}
/* End of implementation class template. */
#endif
typedef int32_t nsAbBooleanOperationType;
/* starting interface: nsIAbBooleanOperationTypes */
#define NS_IABBOOLEANOPERATIONTYPES_IID_STR "9bdd2e51-2be4-49a4-a558-36d1a812231a"
#define NS_IABBOOLEANOPERATIONTYPES_IID \
{0x9bdd2e51, 0x2be4, 0x49a4, \
{ 0xa5, 0x58, 0x36, 0xd1, 0xa8, 0x12, 0x23, 0x1a }}
class NS_NO_VTABLE nsIAbBooleanOperationTypes {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IABBOOLEANOPERATIONTYPES_IID)
enum {
AND = 0,
OR = 1,
NOT = 2
};
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAbBooleanOperationTypes, NS_IABBOOLEANOPERATIONTYPES_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIABBOOLEANOPERATIONTYPES \
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIABBOOLEANOPERATIONTYPES(_to) \
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIABBOOLEANOPERATIONTYPES(_to) \
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsAbBooleanOperationTypes : public nsIAbBooleanOperationTypes
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIABBOOLEANOPERATIONTYPES
nsAbBooleanOperationTypes();
private:
~nsAbBooleanOperationTypes();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsAbBooleanOperationTypes, nsIAbBooleanOperationTypes)
nsAbBooleanOperationTypes::nsAbBooleanOperationTypes()
{
/* member initializers and constructor code */
}
nsAbBooleanOperationTypes::~nsAbBooleanOperationTypes()
{
/* destructor code */
}
/* End of implementation class template. */
#endif
/* starting interface: nsIAbBooleanConditionString */
#define NS_IABBOOLEANCONDITIONSTRING_IID_STR "c3869d72-cfd0-45f0-a0ec-3f67d83c7110"
#define NS_IABBOOLEANCONDITIONSTRING_IID \
{0xc3869d72, 0xcfd0, 0x45f0, \
{ 0xa0, 0xec, 0x3f, 0x67, 0xd8, 0x3c, 0x71, 0x10 }}
class NS_NO_VTABLE nsIAbBooleanConditionString : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IABBOOLEANCONDITIONSTRING_IID)
/* attribute nsAbBooleanConditionType condition; */
NS_IMETHOD GetCondition(nsAbBooleanConditionType *aCondition) = 0;
NS_IMETHOD SetCondition(nsAbBooleanConditionType aCondition) = 0;
/* attribute string name; */
NS_IMETHOD GetName(char * *aName) = 0;
NS_IMETHOD SetName(const char * aName) = 0;
/* attribute wstring value; */
NS_IMETHOD GetValue(char16_t * *aValue) = 0;
NS_IMETHOD SetValue(const char16_t * aValue) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAbBooleanConditionString, NS_IABBOOLEANCONDITIONSTRING_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIABBOOLEANCONDITIONSTRING \
NS_IMETHOD GetCondition(nsAbBooleanConditionType *aCondition) override; \
NS_IMETHOD SetCondition(nsAbBooleanConditionType aCondition) override; \
NS_IMETHOD GetName(char * *aName) override; \
NS_IMETHOD SetName(const char * aName) override; \
NS_IMETHOD GetValue(char16_t * *aValue) override; \
NS_IMETHOD SetValue(const char16_t * aValue) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIABBOOLEANCONDITIONSTRING(_to) \
NS_IMETHOD GetCondition(nsAbBooleanConditionType *aCondition) override { return _to GetCondition(aCondition); } \
NS_IMETHOD SetCondition(nsAbBooleanConditionType aCondition) override { return _to SetCondition(aCondition); } \
NS_IMETHOD GetName(char * *aName) override { return _to GetName(aName); } \
NS_IMETHOD SetName(const char * aName) override { return _to SetName(aName); } \
NS_IMETHOD GetValue(char16_t * *aValue) override { return _to GetValue(aValue); } \
NS_IMETHOD SetValue(const char16_t * aValue) override { return _to SetValue(aValue); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIABBOOLEANCONDITIONSTRING(_to) \
NS_IMETHOD GetCondition(nsAbBooleanConditionType *aCondition) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCondition(aCondition); } \
NS_IMETHOD SetCondition(nsAbBooleanConditionType aCondition) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCondition(aCondition); } \
NS_IMETHOD GetName(char * *aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_IMETHOD SetName(const char * aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetName(aName); } \
NS_IMETHOD GetValue(char16_t * *aValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetValue(aValue); } \
NS_IMETHOD SetValue(const char16_t * aValue) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetValue(aValue); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsAbBooleanConditionString : public nsIAbBooleanConditionString
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIABBOOLEANCONDITIONSTRING
nsAbBooleanConditionString();
private:
~nsAbBooleanConditionString();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsAbBooleanConditionString, nsIAbBooleanConditionString)
nsAbBooleanConditionString::nsAbBooleanConditionString()
{
/* member initializers and constructor code */
}
nsAbBooleanConditionString::~nsAbBooleanConditionString()
{
/* destructor code */
}
/* attribute nsAbBooleanConditionType condition; */
NS_IMETHODIMP nsAbBooleanConditionString::GetCondition(nsAbBooleanConditionType *aCondition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsAbBooleanConditionString::SetCondition(nsAbBooleanConditionType aCondition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute string name; */
NS_IMETHODIMP nsAbBooleanConditionString::GetName(char * *aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsAbBooleanConditionString::SetName(const char * aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute wstring value; */
NS_IMETHODIMP nsAbBooleanConditionString::GetValue(char16_t * *aValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsAbBooleanConditionString::SetValue(const char16_t * aValue)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIAbBooleanExpression */
#define NS_IABBOOLEANEXPRESSION_IID_STR "223a9462-1aeb-4c1f-b069-5fc6278989b2"
#define NS_IABBOOLEANEXPRESSION_IID \
{0x223a9462, 0x1aeb, 0x4c1f, \
{ 0xb0, 0x69, 0x5f, 0xc6, 0x27, 0x89, 0x89, 0xb2 }}
class NS_NO_VTABLE nsIAbBooleanExpression : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IABBOOLEANEXPRESSION_IID)
/* attribute nsAbBooleanOperationType operation; */
NS_IMETHOD GetOperation(nsAbBooleanOperationType *aOperation) = 0;
NS_IMETHOD SetOperation(nsAbBooleanOperationType aOperation) = 0;
/* attribute nsIArray expressions; */
NS_IMETHOD GetExpressions(nsIArray * *aExpressions) = 0;
NS_IMETHOD SetExpressions(nsIArray *aExpressions) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAbBooleanExpression, NS_IABBOOLEANEXPRESSION_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIABBOOLEANEXPRESSION \
NS_IMETHOD GetOperation(nsAbBooleanOperationType *aOperation) override; \
NS_IMETHOD SetOperation(nsAbBooleanOperationType aOperation) override; \
NS_IMETHOD GetExpressions(nsIArray * *aExpressions) override; \
NS_IMETHOD SetExpressions(nsIArray *aExpressions) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIABBOOLEANEXPRESSION(_to) \
NS_IMETHOD GetOperation(nsAbBooleanOperationType *aOperation) override { return _to GetOperation(aOperation); } \
NS_IMETHOD SetOperation(nsAbBooleanOperationType aOperation) override { return _to SetOperation(aOperation); } \
NS_IMETHOD GetExpressions(nsIArray * *aExpressions) override { return _to GetExpressions(aExpressions); } \
NS_IMETHOD SetExpressions(nsIArray *aExpressions) override { return _to SetExpressions(aExpressions); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIABBOOLEANEXPRESSION(_to) \
NS_IMETHOD GetOperation(nsAbBooleanOperationType *aOperation) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOperation(aOperation); } \
NS_IMETHOD SetOperation(nsAbBooleanOperationType aOperation) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetOperation(aOperation); } \
NS_IMETHOD GetExpressions(nsIArray * *aExpressions) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetExpressions(aExpressions); } \
NS_IMETHOD SetExpressions(nsIArray *aExpressions) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetExpressions(aExpressions); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsAbBooleanExpression : public nsIAbBooleanExpression
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIABBOOLEANEXPRESSION
nsAbBooleanExpression();
private:
~nsAbBooleanExpression();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsAbBooleanExpression, nsIAbBooleanExpression)
nsAbBooleanExpression::nsAbBooleanExpression()
{
/* member initializers and constructor code */
}
nsAbBooleanExpression::~nsAbBooleanExpression()
{
/* destructor code */
}
/* attribute nsAbBooleanOperationType operation; */
NS_IMETHODIMP nsAbBooleanExpression::GetOperation(nsAbBooleanOperationType *aOperation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsAbBooleanExpression::SetOperation(nsAbBooleanOperationType aOperation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsIArray expressions; */
NS_IMETHODIMP nsAbBooleanExpression::GetExpressions(nsIArray * *aExpressions)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsAbBooleanExpression::SetExpressions(nsIArray *aExpressions)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIAbBooleanExpression_h__ */
|