This file is indexed.

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

#ifndef __gen_calIEvent_h__
#define __gen_calIEvent_h__


#ifndef __gen_calIItemBase_h__
#include "calIItemBase.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class calIDuration; /* forward declaration */


/* starting interface:    calIEvent */
#define CALIEVENT_IID_STR "5ab15c1c-e295-4d8e-a9a9-ba5bc848b59a"

#define CALIEVENT_IID \
  {0x5ab15c1c, 0xe295, 0x4d8e, \
    { 0xa9, 0xa9, 0xba, 0x5b, 0xc8, 0x48, 0xb5, 0x9a }}

class NS_NO_VTABLE calIEvent : public calIItemBase {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(CALIEVENT_IID)

  /* attribute calIDateTime startDate; */
  NS_IMETHOD GetStartDate(calIDateTime * *aStartDate) = 0;
  NS_IMETHOD SetStartDate(calIDateTime *aStartDate) = 0;

  /* attribute calIDateTime endDate; */
  NS_IMETHOD GetEndDate(calIDateTime * *aEndDate) = 0;
  NS_IMETHOD SetEndDate(calIDateTime *aEndDate) = 0;

  /* readonly attribute calIDuration duration; */
  NS_IMETHOD GetDuration(calIDuration * *aDuration) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(calIEvent, CALIEVENT_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_CALIEVENT \
  NS_IMETHOD GetStartDate(calIDateTime * *aStartDate) override; \
  NS_IMETHOD SetStartDate(calIDateTime *aStartDate) override; \
  NS_IMETHOD GetEndDate(calIDateTime * *aEndDate) override; \
  NS_IMETHOD SetEndDate(calIDateTime *aEndDate) override; \
  NS_IMETHOD GetDuration(calIDuration * *aDuration) 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_CALIEVENT \
  NS_METHOD GetStartDate(calIDateTime * *aStartDate); \
  NS_METHOD SetStartDate(calIDateTime *aStartDate); \
  NS_METHOD GetEndDate(calIDateTime * *aEndDate); \
  NS_METHOD SetEndDate(calIDateTime *aEndDate); \
  NS_METHOD GetDuration(calIDuration * *aDuration); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_CALIEVENT(_to) \
  NS_IMETHOD GetStartDate(calIDateTime * *aStartDate) override { return _to GetStartDate(aStartDate); } \
  NS_IMETHOD SetStartDate(calIDateTime *aStartDate) override { return _to SetStartDate(aStartDate); } \
  NS_IMETHOD GetEndDate(calIDateTime * *aEndDate) override { return _to GetEndDate(aEndDate); } \
  NS_IMETHOD SetEndDate(calIDateTime *aEndDate) override { return _to SetEndDate(aEndDate); } \
  NS_IMETHOD GetDuration(calIDuration * *aDuration) override { return _to GetDuration(aDuration); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_CALIEVENT(_to) \
  NS_IMETHOD GetStartDate(calIDateTime * *aStartDate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStartDate(aStartDate); } \
  NS_IMETHOD SetStartDate(calIDateTime *aStartDate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStartDate(aStartDate); } \
  NS_IMETHOD GetEndDate(calIDateTime * *aEndDate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEndDate(aEndDate); } \
  NS_IMETHOD SetEndDate(calIDateTime *aEndDate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEndDate(aEndDate); } \
  NS_IMETHOD GetDuration(calIDuration * *aDuration) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDuration(aDuration); } 

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

/* Header file */
class _MYCLASS_ : public calIEvent
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_CALIEVENT

  _MYCLASS_();

private:
  ~_MYCLASS_();

protected:
  /* additional members */
};

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

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

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

/* attribute calIDateTime startDate; */
NS_IMETHODIMP _MYCLASS_::GetStartDate(calIDateTime * *aStartDate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetStartDate(calIDateTime *aStartDate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute calIDateTime endDate; */
NS_IMETHODIMP _MYCLASS_::GetEndDate(calIDateTime * *aEndDate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetEndDate(calIDateTime *aEndDate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute calIDuration duration; */
NS_IMETHODIMP _MYCLASS_::GetDuration(calIDuration * *aDuration)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_calIEvent_h__ */