/usr/include/thunderbird/calIRelation.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/calIRelation.idl
*/
#ifndef __gen_calIRelation_h__
#define __gen_calIRelation_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 calIIcalProperty; /* forward declaration */
class calIItemBase; /* forward declaration */
/* starting interface: calIRelation */
#define CALIRELATION_IID_STR "77f0820a-2b49-4c8e-86bf-2b6bda46e391"
#define CALIRELATION_IID \
{0x77f0820a, 0x2b49, 0x4c8e, \
{ 0x86, 0xbf, 0x2b, 0x6b, 0xda, 0x46, 0xe3, 0x91 }}
class NS_NO_VTABLE calIRelation : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(CALIRELATION_IID)
/* attribute AUTF8String relType; */
NS_IMETHOD GetRelType(nsACString & aRelType) = 0;
NS_IMETHOD SetRelType(const nsACString & aRelType) = 0;
/* attribute AUTF8String relId; */
NS_IMETHOD GetRelId(nsACString & aRelId) = 0;
NS_IMETHOD SetRelId(const nsACString & aRelId) = 0;
/* attribute calIIcalProperty icalProperty; */
NS_IMETHOD GetIcalProperty(calIIcalProperty * *aIcalProperty) = 0;
NS_IMETHOD SetIcalProperty(calIIcalProperty *aIcalProperty) = 0;
/* attribute AUTF8String icalString; */
NS_IMETHOD GetIcalString(nsACString & aIcalString) = 0;
NS_IMETHOD SetIcalString(const nsACString & aIcalString) = 0;
/* AUTF8String getParameter (in AString name); */
NS_IMETHOD GetParameter(const nsAString & name, nsACString & _retval) = 0;
/* void setParameter (in AString name, in AUTF8String value); */
NS_IMETHOD SetParameter(const nsAString & name, const nsACString & value) = 0;
/* void deleteParameter (in AString name); */
NS_IMETHOD DeleteParameter(const nsAString & name) = 0;
/* calIRelation clone (); */
NS_IMETHOD Clone(calIRelation * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(calIRelation, CALIRELATION_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_CALIRELATION \
NS_IMETHOD GetRelType(nsACString & aRelType) override; \
NS_IMETHOD SetRelType(const nsACString & aRelType) override; \
NS_IMETHOD GetRelId(nsACString & aRelId) override; \
NS_IMETHOD SetRelId(const nsACString & aRelId) override; \
NS_IMETHOD GetIcalProperty(calIIcalProperty * *aIcalProperty) override; \
NS_IMETHOD SetIcalProperty(calIIcalProperty *aIcalProperty) override; \
NS_IMETHOD GetIcalString(nsACString & aIcalString) override; \
NS_IMETHOD SetIcalString(const nsACString & aIcalString) override; \
NS_IMETHOD GetParameter(const nsAString & name, nsACString & _retval) override; \
NS_IMETHOD SetParameter(const nsAString & name, const nsACString & value) override; \
NS_IMETHOD DeleteParameter(const nsAString & name) override; \
NS_IMETHOD Clone(calIRelation * *_retval) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_CALIRELATION(_to) \
NS_IMETHOD GetRelType(nsACString & aRelType) override { return _to GetRelType(aRelType); } \
NS_IMETHOD SetRelType(const nsACString & aRelType) override { return _to SetRelType(aRelType); } \
NS_IMETHOD GetRelId(nsACString & aRelId) override { return _to GetRelId(aRelId); } \
NS_IMETHOD SetRelId(const nsACString & aRelId) override { return _to SetRelId(aRelId); } \
NS_IMETHOD GetIcalProperty(calIIcalProperty * *aIcalProperty) override { return _to GetIcalProperty(aIcalProperty); } \
NS_IMETHOD SetIcalProperty(calIIcalProperty *aIcalProperty) override { return _to SetIcalProperty(aIcalProperty); } \
NS_IMETHOD GetIcalString(nsACString & aIcalString) override { return _to GetIcalString(aIcalString); } \
NS_IMETHOD SetIcalString(const nsACString & aIcalString) override { return _to SetIcalString(aIcalString); } \
NS_IMETHOD GetParameter(const nsAString & name, nsACString & _retval) override { return _to GetParameter(name, _retval); } \
NS_IMETHOD SetParameter(const nsAString & name, const nsACString & value) override { return _to SetParameter(name, value); } \
NS_IMETHOD DeleteParameter(const nsAString & name) override { return _to DeleteParameter(name); } \
NS_IMETHOD Clone(calIRelation * *_retval) override { return _to Clone(_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_CALIRELATION(_to) \
NS_IMETHOD GetRelType(nsACString & aRelType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRelType(aRelType); } \
NS_IMETHOD SetRelType(const nsACString & aRelType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRelType(aRelType); } \
NS_IMETHOD GetRelId(nsACString & aRelId) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRelId(aRelId); } \
NS_IMETHOD SetRelId(const nsACString & aRelId) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRelId(aRelId); } \
NS_IMETHOD GetIcalProperty(calIIcalProperty * *aIcalProperty) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIcalProperty(aIcalProperty); } \
NS_IMETHOD SetIcalProperty(calIIcalProperty *aIcalProperty) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetIcalProperty(aIcalProperty); } \
NS_IMETHOD GetIcalString(nsACString & aIcalString) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIcalString(aIcalString); } \
NS_IMETHOD SetIcalString(const nsACString & aIcalString) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetIcalString(aIcalString); } \
NS_IMETHOD GetParameter(const nsAString & name, nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetParameter(name, _retval); } \
NS_IMETHOD SetParameter(const nsAString & name, const nsACString & value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetParameter(name, value); } \
NS_IMETHOD DeleteParameter(const nsAString & name) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DeleteParameter(name); } \
NS_IMETHOD Clone(calIRelation * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Clone(_retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public calIRelation
{
public:
NS_DECL_ISUPPORTS
NS_DECL_CALIRELATION
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, calIRelation)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* attribute AUTF8String relType; */
NS_IMETHODIMP _MYCLASS_::GetRelType(nsACString & aRelType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetRelType(const nsACString & aRelType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute AUTF8String relId; */
NS_IMETHODIMP _MYCLASS_::GetRelId(nsACString & aRelId)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetRelId(const nsACString & aRelId)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute calIIcalProperty icalProperty; */
NS_IMETHODIMP _MYCLASS_::GetIcalProperty(calIIcalProperty * *aIcalProperty)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetIcalProperty(calIIcalProperty *aIcalProperty)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute AUTF8String icalString; */
NS_IMETHODIMP _MYCLASS_::GetIcalString(nsACString & aIcalString)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetIcalString(const nsACString & aIcalString)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AUTF8String getParameter (in AString name); */
NS_IMETHODIMP _MYCLASS_::GetParameter(const nsAString & name, nsACString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setParameter (in AString name, in AUTF8String value); */
NS_IMETHODIMP _MYCLASS_::SetParameter(const nsAString & name, const nsACString & value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void deleteParameter (in AString name); */
NS_IMETHODIMP _MYCLASS_::DeleteParameter(const nsAString & name)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* calIRelation clone (); */
NS_IMETHODIMP _MYCLASS_::Clone(calIRelation * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_calIRelation_h__ */
|