This file is indexed.

/usr/include/thunderbird/calIAttachment.h is in thunderbird-dev 1:52.8.0-1~deb8u1.

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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/calIAttachment.idl
 */

#ifndef __gen_calIAttachment_h__
#define __gen_calIAttachment_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 nsIURI; /* forward declaration */

class calIIcalProperty; /* forward declaration */

class calIItemBase; /* forward declaration */


/* starting interface:    calIAttachment */
#define CALIATTACHMENT_IID_STR "7a17d45d-1c0e-4877-baa3-0eb67e770498"

#define CALIATTACHMENT_IID \
  {0x7a17d45d, 0x1c0e, 0x4877, \
    { 0xba, 0xa3, 0x0e, 0xb6, 0x7e, 0x77, 0x04, 0x98 }}

class NS_NO_VTABLE calIAttachment : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(CALIATTACHMENT_IID)

  /* readonly attribute AUTF8String hashId; */
  NS_IMETHOD GetHashId(nsACString & aHashId) = 0;

  /* attribute nsIURI uri; */
  NS_IMETHOD GetUri(nsIURI * *aUri) = 0;
  NS_IMETHOD SetUri(nsIURI *aUri) = 0;

  /* attribute AUTF8String rawData; */
  NS_IMETHOD GetRawData(nsACString & aRawData) = 0;
  NS_IMETHOD SetRawData(const nsACString & aRawData) = 0;

  /* attribute AString formatType; */
  NS_IMETHOD GetFormatType(nsAString & aFormatType) = 0;
  NS_IMETHOD SetFormatType(const nsAString & aFormatType) = 0;

  /* attribute AUTF8String encoding; */
  NS_IMETHOD GetEncoding(nsACString & aEncoding) = 0;
  NS_IMETHOD SetEncoding(const nsACString & aEncoding) = 0;

  /* attribute calIIcalProperty icalProperty; */
  NS_IMETHOD GetIcalProperty(calIIcalProperty * *aIcalProperty) = 0;
  NS_IMETHOD SetIcalProperty(calIIcalProperty *aIcalProperty) = 0;

  /* attribute AUTF8String icalString; */
  NS_IMETHOD GetIcalString(nsACString & aIcalString) = 0;
  NS_IMETHOD SetIcalString(const nsACString & aIcalString) = 0;

  /* AUTF8String getParameter (in AString name); */
  NS_IMETHOD GetParameter(const nsAString & name, nsACString & _retval) = 0;

  /* void setParameter (in AString name, in AUTF8String value); */
  NS_IMETHOD SetParameter(const nsAString & name, const nsACString & value) = 0;

  /* void deleteParameter (in AString name); */
  NS_IMETHOD DeleteParameter(const nsAString & name) = 0;

  /* calIAttachment clone (); */
  NS_IMETHOD Clone(calIAttachment * *_retval) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(calIAttachment, CALIATTACHMENT_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_CALIATTACHMENT \
  NS_IMETHOD GetHashId(nsACString & aHashId) override; \
  NS_IMETHOD GetUri(nsIURI * *aUri) override; \
  NS_IMETHOD SetUri(nsIURI *aUri) override; \
  NS_IMETHOD GetRawData(nsACString & aRawData) override; \
  NS_IMETHOD SetRawData(const nsACString & aRawData) override; \
  NS_IMETHOD GetFormatType(nsAString & aFormatType) override; \
  NS_IMETHOD SetFormatType(const nsAString & aFormatType) override; \
  NS_IMETHOD GetEncoding(nsACString & aEncoding) override; \
  NS_IMETHOD SetEncoding(const nsACString & aEncoding) override; \
  NS_IMETHOD GetIcalProperty(calIIcalProperty * *aIcalProperty) override; \
  NS_IMETHOD SetIcalProperty(calIIcalProperty *aIcalProperty) override; \
  NS_IMETHOD GetIcalString(nsACString & aIcalString) override; \
  NS_IMETHOD SetIcalString(const nsACString & aIcalString) override; \
  NS_IMETHOD GetParameter(const nsAString & name, nsACString & _retval) override; \
  NS_IMETHOD SetParameter(const nsAString & name, const nsACString & value) override; \
  NS_IMETHOD DeleteParameter(const nsAString & name) override; \
  NS_IMETHOD Clone(calIAttachment * *_retval) override; 

/* Use this macro when declaring the members of this interface when the
   class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_CALIATTACHMENT \
  NS_METHOD GetHashId(nsACString & aHashId); \
  NS_METHOD GetUri(nsIURI * *aUri); \
  NS_METHOD SetUri(nsIURI *aUri); \
  NS_METHOD GetRawData(nsACString & aRawData); \
  NS_METHOD SetRawData(const nsACString & aRawData); \
  NS_METHOD GetFormatType(nsAString & aFormatType); \
  NS_METHOD SetFormatType(const nsAString & aFormatType); \
  NS_METHOD GetEncoding(nsACString & aEncoding); \
  NS_METHOD SetEncoding(const nsACString & aEncoding); \
  NS_METHOD GetIcalProperty(calIIcalProperty * *aIcalProperty); \
  NS_METHOD SetIcalProperty(calIIcalProperty *aIcalProperty); \
  NS_METHOD GetIcalString(nsACString & aIcalString); \
  NS_METHOD SetIcalString(const nsACString & aIcalString); \
  NS_METHOD GetParameter(const nsAString & name, nsACString & _retval); \
  NS_METHOD SetParameter(const nsAString & name, const nsACString & value); \
  NS_METHOD DeleteParameter(const nsAString & name); \
  NS_METHOD Clone(calIAttachment * *_retval); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_CALIATTACHMENT(_to) \
  NS_IMETHOD GetHashId(nsACString & aHashId) override { return _to GetHashId(aHashId); } \
  NS_IMETHOD GetUri(nsIURI * *aUri) override { return _to GetUri(aUri); } \
  NS_IMETHOD SetUri(nsIURI *aUri) override { return _to SetUri(aUri); } \
  NS_IMETHOD GetRawData(nsACString & aRawData) override { return _to GetRawData(aRawData); } \
  NS_IMETHOD SetRawData(const nsACString & aRawData) override { return _to SetRawData(aRawData); } \
  NS_IMETHOD GetFormatType(nsAString & aFormatType) override { return _to GetFormatType(aFormatType); } \
  NS_IMETHOD SetFormatType(const nsAString & aFormatType) override { return _to SetFormatType(aFormatType); } \
  NS_IMETHOD GetEncoding(nsACString & aEncoding) override { return _to GetEncoding(aEncoding); } \
  NS_IMETHOD SetEncoding(const nsACString & aEncoding) override { return _to SetEncoding(aEncoding); } \
  NS_IMETHOD GetIcalProperty(calIIcalProperty * *aIcalProperty) override { return _to GetIcalProperty(aIcalProperty); } \
  NS_IMETHOD SetIcalProperty(calIIcalProperty *aIcalProperty) override { return _to SetIcalProperty(aIcalProperty); } \
  NS_IMETHOD GetIcalString(nsACString & aIcalString) override { return _to GetIcalString(aIcalString); } \
  NS_IMETHOD SetIcalString(const nsACString & aIcalString) override { return _to SetIcalString(aIcalString); } \
  NS_IMETHOD GetParameter(const nsAString & name, nsACString & _retval) override { return _to GetParameter(name, _retval); } \
  NS_IMETHOD SetParameter(const nsAString & name, const nsACString & value) override { return _to SetParameter(name, value); } \
  NS_IMETHOD DeleteParameter(const nsAString & name) override { return _to DeleteParameter(name); } \
  NS_IMETHOD Clone(calIAttachment * *_retval) override { return _to Clone(_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_CALIATTACHMENT(_to) \
  NS_IMETHOD GetHashId(nsACString & aHashId) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHashId(aHashId); } \
  NS_IMETHOD GetUri(nsIURI * *aUri) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUri(aUri); } \
  NS_IMETHOD SetUri(nsIURI *aUri) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetUri(aUri); } \
  NS_IMETHOD GetRawData(nsACString & aRawData) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRawData(aRawData); } \
  NS_IMETHOD SetRawData(const nsACString & aRawData) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRawData(aRawData); } \
  NS_IMETHOD GetFormatType(nsAString & aFormatType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFormatType(aFormatType); } \
  NS_IMETHOD SetFormatType(const nsAString & aFormatType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFormatType(aFormatType); } \
  NS_IMETHOD GetEncoding(nsACString & aEncoding) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEncoding(aEncoding); } \
  NS_IMETHOD SetEncoding(const nsACString & aEncoding) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEncoding(aEncoding); } \
  NS_IMETHOD GetIcalProperty(calIIcalProperty * *aIcalProperty) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIcalProperty(aIcalProperty); } \
  NS_IMETHOD SetIcalProperty(calIIcalProperty *aIcalProperty) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetIcalProperty(aIcalProperty); } \
  NS_IMETHOD GetIcalString(nsACString & aIcalString) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIcalString(aIcalString); } \
  NS_IMETHOD SetIcalString(const nsACString & aIcalString) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetIcalString(aIcalString); } \
  NS_IMETHOD GetParameter(const nsAString & name, nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetParameter(name, _retval); } \
  NS_IMETHOD SetParameter(const nsAString & name, const nsACString & value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetParameter(name, value); } \
  NS_IMETHOD DeleteParameter(const nsAString & name) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DeleteParameter(name); } \
  NS_IMETHOD Clone(calIAttachment * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Clone(_retval); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class _MYCLASS_ : public calIAttachment
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_CALIATTACHMENT

  _MYCLASS_();

private:
  ~_MYCLASS_();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, calIAttachment)

_MYCLASS_::_MYCLASS_()
{
  /* member initializers and constructor code */
}

_MYCLASS_::~_MYCLASS_()
{
  /* destructor code */
}

/* readonly attribute AUTF8String hashId; */
NS_IMETHODIMP _MYCLASS_::GetHashId(nsACString & aHashId)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute nsIURI uri; */
NS_IMETHODIMP _MYCLASS_::GetUri(nsIURI * *aUri)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetUri(nsIURI *aUri)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute AUTF8String rawData; */
NS_IMETHODIMP _MYCLASS_::GetRawData(nsACString & aRawData)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetRawData(const nsACString & aRawData)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute AString formatType; */
NS_IMETHODIMP _MYCLASS_::GetFormatType(nsAString & aFormatType)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetFormatType(const nsAString & aFormatType)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute AUTF8String encoding; */
NS_IMETHODIMP _MYCLASS_::GetEncoding(nsACString & aEncoding)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetEncoding(const nsACString & aEncoding)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute calIIcalProperty icalProperty; */
NS_IMETHODIMP _MYCLASS_::GetIcalProperty(calIIcalProperty * *aIcalProperty)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetIcalProperty(calIIcalProperty *aIcalProperty)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute AUTF8String icalString; */
NS_IMETHODIMP _MYCLASS_::GetIcalString(nsACString & aIcalString)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetIcalString(const nsACString & aIcalString)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* AUTF8String getParameter (in AString name); */
NS_IMETHODIMP _MYCLASS_::GetParameter(const nsAString & name, nsACString & _retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void setParameter (in AString name, in AUTF8String value); */
NS_IMETHODIMP _MYCLASS_::SetParameter(const nsAString & name, const nsACString & value)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void deleteParameter (in AString name); */
NS_IMETHODIMP _MYCLASS_::DeleteParameter(const nsAString & name)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* calIAttachment clone (); */
NS_IMETHODIMP _MYCLASS_::Clone(calIAttachment * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_calIAttachment_h__ */