/usr/include/thunderbird/nsIStringEnumerator.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIStringEnumerator.idl
*/
#ifndef __gen_nsIStringEnumerator_h__
#define __gen_nsIStringEnumerator_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
/* starting interface: nsIStringEnumerator */
#define NS_ISTRINGENUMERATOR_IID_STR "50d3ef6c-9380-4f06-9fb2-95488f7d141c"
#define NS_ISTRINGENUMERATOR_IID \
{0x50d3ef6c, 0x9380, 0x4f06, \
{ 0x9f, 0xb2, 0x95, 0x48, 0x8f, 0x7d, 0x14, 0x1c }}
class NS_NO_VTABLE nsIStringEnumerator : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISTRINGENUMERATOR_IID)
/* boolean hasMore (); */
NS_IMETHOD HasMore(bool *_retval) = 0;
/* AString getNext (); */
NS_IMETHOD GetNext(nsAString & _retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIStringEnumerator, NS_ISTRINGENUMERATOR_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISTRINGENUMERATOR \
NS_IMETHOD HasMore(bool *_retval) override; \
NS_IMETHOD GetNext(nsAString & _retval) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISTRINGENUMERATOR(_to) \
NS_IMETHOD HasMore(bool *_retval) override { return _to HasMore(_retval); } \
NS_IMETHOD GetNext(nsAString & _retval) override { return _to GetNext(_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_NSISTRINGENUMERATOR(_to) \
NS_IMETHOD HasMore(bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->HasMore(_retval); } \
NS_IMETHOD GetNext(nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNext(_retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsStringEnumerator : public nsIStringEnumerator
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISTRINGENUMERATOR
nsStringEnumerator();
private:
~nsStringEnumerator();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsStringEnumerator, nsIStringEnumerator)
nsStringEnumerator::nsStringEnumerator()
{
/* member initializers and constructor code */
}
nsStringEnumerator::~nsStringEnumerator()
{
/* destructor code */
}
/* boolean hasMore (); */
NS_IMETHODIMP nsStringEnumerator::HasMore(bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString getNext (); */
NS_IMETHODIMP nsStringEnumerator::GetNext(nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIUTF8StringEnumerator */
#define NS_IUTF8STRINGENUMERATOR_IID_STR "9bdf1010-3695-4907-95ed-83d0410ec307"
#define NS_IUTF8STRINGENUMERATOR_IID \
{0x9bdf1010, 0x3695, 0x4907, \
{ 0x95, 0xed, 0x83, 0xd0, 0x41, 0x0e, 0xc3, 0x07 }}
class NS_NO_VTABLE nsIUTF8StringEnumerator : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IUTF8STRINGENUMERATOR_IID)
/* boolean hasMore (); */
NS_IMETHOD HasMore(bool *_retval) = 0;
/* AUTF8String getNext (); */
NS_IMETHOD GetNext(nsACString & _retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIUTF8StringEnumerator, NS_IUTF8STRINGENUMERATOR_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIUTF8STRINGENUMERATOR \
NS_IMETHOD HasMore(bool *_retval) override; \
NS_IMETHOD GetNext(nsACString & _retval) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIUTF8STRINGENUMERATOR(_to) \
NS_IMETHOD HasMore(bool *_retval) override { return _to HasMore(_retval); } \
NS_IMETHOD GetNext(nsACString & _retval) override { return _to GetNext(_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_NSIUTF8STRINGENUMERATOR(_to) \
NS_IMETHOD HasMore(bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->HasMore(_retval); } \
NS_IMETHOD GetNext(nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNext(_retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsUTF8StringEnumerator : public nsIUTF8StringEnumerator
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIUTF8STRINGENUMERATOR
nsUTF8StringEnumerator();
private:
~nsUTF8StringEnumerator();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsUTF8StringEnumerator, nsIUTF8StringEnumerator)
nsUTF8StringEnumerator::nsUTF8StringEnumerator()
{
/* member initializers and constructor code */
}
nsUTF8StringEnumerator::~nsUTF8StringEnumerator()
{
/* destructor code */
}
/* boolean hasMore (); */
NS_IMETHODIMP nsUTF8StringEnumerator::HasMore(bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AUTF8String getNext (); */
NS_IMETHODIMP nsUTF8StringEnumerator::GetNext(nsACString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIStringEnumerator_h__ */
|