/usr/include/thunderbird/nsISHContainer.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsISHContainer.idl
*/
#ifndef __gen_nsISHContainer_h__
#define __gen_nsISHContainer_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 nsISHEntry; /* forward declaration */
/* starting interface: nsISHContainer */
#define NS_ISHCONTAINER_IID_STR "67dd0357-8372-4122-bff6-217435e8b7e4"
#define NS_ISHCONTAINER_IID \
{0x67dd0357, 0x8372, 0x4122, \
{ 0xbf, 0xf6, 0x21, 0x74, 0x35, 0xe8, 0xb7, 0xe4 }}
class NS_NO_VTABLE nsISHContainer : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISHCONTAINER_IID)
/* readonly attribute long childCount; */
NS_IMETHOD GetChildCount(int32_t *aChildCount) = 0;
/* void AddChild (in nsISHEntry child, in long offset); */
NS_IMETHOD AddChild(nsISHEntry *child, int32_t offset) = 0;
/* void RemoveChild (in nsISHEntry child); */
NS_IMETHOD RemoveChild(nsISHEntry *child) = 0;
/* nsISHEntry GetChildAt (in long index); */
NS_IMETHOD GetChildAt(int32_t index, nsISHEntry * *_retval) = 0;
/* void ReplaceChild (in nsISHEntry aNewChild); */
NS_IMETHOD ReplaceChild(nsISHEntry *aNewChild) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsISHContainer, NS_ISHCONTAINER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISHCONTAINER \
NS_IMETHOD GetChildCount(int32_t *aChildCount) override; \
NS_IMETHOD AddChild(nsISHEntry *child, int32_t offset) override; \
NS_IMETHOD RemoveChild(nsISHEntry *child) override; \
NS_IMETHOD GetChildAt(int32_t index, nsISHEntry * *_retval) override; \
NS_IMETHOD ReplaceChild(nsISHEntry *aNewChild) 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_NSISHCONTAINER \
NS_METHOD GetChildCount(int32_t *aChildCount); \
NS_METHOD AddChild(nsISHEntry *child, int32_t offset); \
NS_METHOD RemoveChild(nsISHEntry *child); \
NS_METHOD GetChildAt(int32_t index, nsISHEntry * *_retval); \
NS_METHOD ReplaceChild(nsISHEntry *aNewChild);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISHCONTAINER(_to) \
NS_IMETHOD GetChildCount(int32_t *aChildCount) override { return _to GetChildCount(aChildCount); } \
NS_IMETHOD AddChild(nsISHEntry *child, int32_t offset) override { return _to AddChild(child, offset); } \
NS_IMETHOD RemoveChild(nsISHEntry *child) override { return _to RemoveChild(child); } \
NS_IMETHOD GetChildAt(int32_t index, nsISHEntry * *_retval) override { return _to GetChildAt(index, _retval); } \
NS_IMETHOD ReplaceChild(nsISHEntry *aNewChild) override { return _to ReplaceChild(aNewChild); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISHCONTAINER(_to) \
NS_IMETHOD GetChildCount(int32_t *aChildCount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildCount(aChildCount); } \
NS_IMETHOD AddChild(nsISHEntry *child, int32_t offset) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddChild(child, offset); } \
NS_IMETHOD RemoveChild(nsISHEntry *child) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveChild(child); } \
NS_IMETHOD GetChildAt(int32_t index, nsISHEntry * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildAt(index, _retval); } \
NS_IMETHOD ReplaceChild(nsISHEntry *aNewChild) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ReplaceChild(aNewChild); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsSHContainer : public nsISHContainer
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISHCONTAINER
nsSHContainer();
private:
~nsSHContainer();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsSHContainer, nsISHContainer)
nsSHContainer::nsSHContainer()
{
/* member initializers and constructor code */
}
nsSHContainer::~nsSHContainer()
{
/* destructor code */
}
/* readonly attribute long childCount; */
NS_IMETHODIMP nsSHContainer::GetChildCount(int32_t *aChildCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void AddChild (in nsISHEntry child, in long offset); */
NS_IMETHODIMP nsSHContainer::AddChild(nsISHEntry *child, int32_t offset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void RemoveChild (in nsISHEntry child); */
NS_IMETHODIMP nsSHContainer::RemoveChild(nsISHEntry *child)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsISHEntry GetChildAt (in long index); */
NS_IMETHODIMP nsSHContainer::GetChildAt(int32_t index, nsISHEntry * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void ReplaceChild (in nsISHEntry aNewChild); */
NS_IMETHODIMP nsSHContainer::ReplaceChild(nsISHEntry *aNewChild)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsISHContainer_h__ */
|