/usr/include/thunderbird/nsIDOMCounter.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMCounter.idl
*/
#ifndef __gen_nsIDOMCounter_h__
#define __gen_nsIDOMCounter_h__
#ifndef __gen_domstubs_h__
#include "domstubs.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: nsIDOMCounter */
#define NS_IDOMCOUNTER_IID_STR "31adb439-0055-402d-9b1d-d5ca94f3f55b"
#define NS_IDOMCOUNTER_IID \
{0x31adb439, 0x0055, 0x402d, \
{ 0x9b, 0x1d, 0xd5, 0xca, 0x94, 0xf3, 0xf5, 0x5b }}
class NS_NO_VTABLE nsIDOMCounter : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCOUNTER_IID)
/* readonly attribute DOMString identifier; */
NS_IMETHOD GetIdentifier(nsAString & aIdentifier) = 0;
/* readonly attribute DOMString listStyle; */
NS_IMETHOD GetListStyle(nsAString & aListStyle) = 0;
/* readonly attribute DOMString separator; */
NS_IMETHOD GetSeparator(nsAString & aSeparator) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCounter, NS_IDOMCOUNTER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMCOUNTER \
NS_IMETHOD GetIdentifier(nsAString & aIdentifier) override; \
NS_IMETHOD GetListStyle(nsAString & aListStyle) override; \
NS_IMETHOD GetSeparator(nsAString & aSeparator) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMCOUNTER(_to) \
NS_IMETHOD GetIdentifier(nsAString & aIdentifier) override { return _to GetIdentifier(aIdentifier); } \
NS_IMETHOD GetListStyle(nsAString & aListStyle) override { return _to GetListStyle(aListStyle); } \
NS_IMETHOD GetSeparator(nsAString & aSeparator) override { return _to GetSeparator(aSeparator); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMCOUNTER(_to) \
NS_IMETHOD GetIdentifier(nsAString & aIdentifier) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIdentifier(aIdentifier); } \
NS_IMETHOD GetListStyle(nsAString & aListStyle) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetListStyle(aListStyle); } \
NS_IMETHOD GetSeparator(nsAString & aSeparator) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSeparator(aSeparator); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMCounter : public nsIDOMCounter
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMCOUNTER
nsDOMCounter();
private:
~nsDOMCounter();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMCounter, nsIDOMCounter)
nsDOMCounter::nsDOMCounter()
{
/* member initializers and constructor code */
}
nsDOMCounter::~nsDOMCounter()
{
/* destructor code */
}
/* readonly attribute DOMString identifier; */
NS_IMETHODIMP nsDOMCounter::GetIdentifier(nsAString & aIdentifier)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString listStyle; */
NS_IMETHODIMP nsDOMCounter::GetListStyle(nsAString & aListStyle)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString separator; */
NS_IMETHODIMP nsDOMCounter::GetSeparator(nsAString & aSeparator)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMCounter_h__ */
|