/usr/include/thunderbird/nsIEnumerator.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIEnumerator.idl
*/
#ifndef __gen_nsIEnumerator_h__
#define __gen_nsIEnumerator_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
#define NS_ENUMERATOR_FALSE 1
/* starting interface: nsIEnumerator */
#define NS_IENUMERATOR_IID_STR "ad385286-cbc4-11d2-8cca-0060b0fc14a3"
#define NS_IENUMERATOR_IID \
{0xad385286, 0xcbc4, 0x11d2, \
{ 0x8c, 0xca, 0x00, 0x60, 0xb0, 0xfc, 0x14, 0xa3 }}
class NS_NO_VTABLE nsIEnumerator : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IENUMERATOR_IID)
/* void first (); */
NS_IMETHOD First(void) = 0;
/* void next (); */
NS_IMETHOD Next(void) = 0;
/* nsISupports currentItem (); */
NS_IMETHOD CurrentItem(nsISupports * *_retval) = 0;
/* void isDone (); */
NS_IMETHOD IsDone(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIEnumerator, NS_IENUMERATOR_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIENUMERATOR \
NS_IMETHOD First(void) override; \
NS_IMETHOD Next(void) override; \
NS_IMETHOD CurrentItem(nsISupports * *_retval) override; \
NS_IMETHOD IsDone(void) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIENUMERATOR(_to) \
NS_IMETHOD First(void) override { return _to First(); } \
NS_IMETHOD Next(void) override { return _to Next(); } \
NS_IMETHOD CurrentItem(nsISupports * *_retval) override { return _to CurrentItem(_retval); } \
NS_IMETHOD IsDone(void) override { return _to IsDone(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIENUMERATOR(_to) \
NS_IMETHOD First(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->First(); } \
NS_IMETHOD Next(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Next(); } \
NS_IMETHOD CurrentItem(nsISupports * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CurrentItem(_retval); } \
NS_IMETHOD IsDone(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->IsDone(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsEnumerator : public nsIEnumerator
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIENUMERATOR
nsEnumerator();
private:
~nsEnumerator();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsEnumerator, nsIEnumerator)
nsEnumerator::nsEnumerator()
{
/* member initializers and constructor code */
}
nsEnumerator::~nsEnumerator()
{
/* destructor code */
}
/* void first (); */
NS_IMETHODIMP nsEnumerator::First()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void next (); */
NS_IMETHODIMP nsEnumerator::Next()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsISupports currentItem (); */
NS_IMETHODIMP nsEnumerator::CurrentItem(nsISupports * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void isDone (); */
NS_IMETHODIMP nsEnumerator::IsDone()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIBidirectionalEnumerator */
#define NS_IBIDIRECTIONALENUMERATOR_IID_STR "75f158a0-cadd-11d2-8cca-0060b0fc14a3"
#define NS_IBIDIRECTIONALENUMERATOR_IID \
{0x75f158a0, 0xcadd, 0x11d2, \
{ 0x8c, 0xca, 0x00, 0x60, 0xb0, 0xfc, 0x14, 0xa3 }}
class NS_NO_VTABLE nsIBidirectionalEnumerator : public nsIEnumerator {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IBIDIRECTIONALENUMERATOR_IID)
/* void last (); */
NS_IMETHOD Last(void) = 0;
/* void prev (); */
NS_IMETHOD Prev(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIBidirectionalEnumerator, NS_IBIDIRECTIONALENUMERATOR_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIBIDIRECTIONALENUMERATOR \
NS_IMETHOD Last(void) override; \
NS_IMETHOD Prev(void) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIBIDIRECTIONALENUMERATOR(_to) \
NS_IMETHOD Last(void) override { return _to Last(); } \
NS_IMETHOD Prev(void) override { return _to Prev(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIBIDIRECTIONALENUMERATOR(_to) \
NS_IMETHOD Last(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Last(); } \
NS_IMETHOD Prev(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Prev(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsBidirectionalEnumerator : public nsIBidirectionalEnumerator
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIBIDIRECTIONALENUMERATOR
nsBidirectionalEnumerator();
private:
~nsBidirectionalEnumerator();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsBidirectionalEnumerator, nsIBidirectionalEnumerator)
nsBidirectionalEnumerator::nsBidirectionalEnumerator()
{
/* member initializers and constructor code */
}
nsBidirectionalEnumerator::~nsBidirectionalEnumerator()
{
/* destructor code */
}
/* void last (); */
NS_IMETHODIMP nsBidirectionalEnumerator::Last()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void prev (); */
NS_IMETHODIMP nsBidirectionalEnumerator::Prev()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIEnumerator_h__ */
|