/usr/include/thunderbird/calIIcsSerializer.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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/calIIcsSerializer.idl
*/
#ifndef __gen_calIIcsSerializer_h__
#define __gen_calIIcsSerializer_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 calIIcalComponent; /* forward declaration */
class calIItemBase; /* forward declaration */
class nsIOutputStream; /* forward declaration */
class nsIInputStream; /* forward declaration */
/* starting interface: calIIcsSerializer */
#define CALIICSSERIALIZER_IID_STR "4dcf6b4e-7322-4a61-a191-8d8cc1aea42e"
#define CALIICSSERIALIZER_IID \
{0x4dcf6b4e, 0x7322, 0x4a61, \
{ 0xa1, 0x91, 0x8d, 0x8c, 0xc1, 0xae, 0xa4, 0x2e }}
class NS_NO_VTABLE calIIcsSerializer : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(CALIICSSERIALIZER_IID)
/* void addItems ([array, size_is (aCount)] in calIItemBase aItems, in unsigned long aCount); */
NS_IMETHOD AddItems(calIItemBase **aItems, uint32_t aCount) = 0;
/* void addProperty (in calIIcalProperty aProperty); */
NS_IMETHOD AddProperty(calIIcalProperty *aProperty) = 0;
/* void addComponent (in calIIcalComponent aComponent); */
NS_IMETHOD AddComponent(calIIcalComponent *aComponent) = 0;
/* AString serializeToString (); */
NS_IMETHOD SerializeToString(nsAString & _retval) = 0;
/* nsIInputStream serializeToInputStream (); */
NS_IMETHOD SerializeToInputStream(nsIInputStream * *_retval) = 0;
/* void serializeToStream (in nsIOutputStream aStream); */
NS_IMETHOD SerializeToStream(nsIOutputStream *aStream) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(calIIcsSerializer, CALIICSSERIALIZER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_CALIICSSERIALIZER \
NS_IMETHOD AddItems(calIItemBase **aItems, uint32_t aCount) override; \
NS_IMETHOD AddProperty(calIIcalProperty *aProperty) override; \
NS_IMETHOD AddComponent(calIIcalComponent *aComponent) override; \
NS_IMETHOD SerializeToString(nsAString & _retval) override; \
NS_IMETHOD SerializeToInputStream(nsIInputStream * *_retval) override; \
NS_IMETHOD SerializeToStream(nsIOutputStream *aStream) 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_CALIICSSERIALIZER \
NS_METHOD AddItems(calIItemBase **aItems, uint32_t aCount); \
NS_METHOD AddProperty(calIIcalProperty *aProperty); \
NS_METHOD AddComponent(calIIcalComponent *aComponent); \
NS_METHOD SerializeToString(nsAString & _retval); \
NS_METHOD SerializeToInputStream(nsIInputStream * *_retval); \
NS_METHOD SerializeToStream(nsIOutputStream *aStream);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_CALIICSSERIALIZER(_to) \
NS_IMETHOD AddItems(calIItemBase **aItems, uint32_t aCount) override { return _to AddItems(aItems, aCount); } \
NS_IMETHOD AddProperty(calIIcalProperty *aProperty) override { return _to AddProperty(aProperty); } \
NS_IMETHOD AddComponent(calIIcalComponent *aComponent) override { return _to AddComponent(aComponent); } \
NS_IMETHOD SerializeToString(nsAString & _retval) override { return _to SerializeToString(_retval); } \
NS_IMETHOD SerializeToInputStream(nsIInputStream * *_retval) override { return _to SerializeToInputStream(_retval); } \
NS_IMETHOD SerializeToStream(nsIOutputStream *aStream) override { return _to SerializeToStream(aStream); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_CALIICSSERIALIZER(_to) \
NS_IMETHOD AddItems(calIItemBase **aItems, uint32_t aCount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddItems(aItems, aCount); } \
NS_IMETHOD AddProperty(calIIcalProperty *aProperty) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddProperty(aProperty); } \
NS_IMETHOD AddComponent(calIIcalComponent *aComponent) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddComponent(aComponent); } \
NS_IMETHOD SerializeToString(nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SerializeToString(_retval); } \
NS_IMETHOD SerializeToInputStream(nsIInputStream * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SerializeToInputStream(_retval); } \
NS_IMETHOD SerializeToStream(nsIOutputStream *aStream) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SerializeToStream(aStream); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public calIIcsSerializer
{
public:
NS_DECL_ISUPPORTS
NS_DECL_CALIICSSERIALIZER
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, calIIcsSerializer)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* void addItems ([array, size_is (aCount)] in calIItemBase aItems, in unsigned long aCount); */
NS_IMETHODIMP _MYCLASS_::AddItems(calIItemBase **aItems, uint32_t aCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addProperty (in calIIcalProperty aProperty); */
NS_IMETHODIMP _MYCLASS_::AddProperty(calIIcalProperty *aProperty)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addComponent (in calIIcalComponent aComponent); */
NS_IMETHODIMP _MYCLASS_::AddComponent(calIIcalComponent *aComponent)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString serializeToString (); */
NS_IMETHODIMP _MYCLASS_::SerializeToString(nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIInputStream serializeToInputStream (); */
NS_IMETHODIMP _MYCLASS_::SerializeToInputStream(nsIInputStream * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void serializeToStream (in nsIOutputStream aStream); */
NS_IMETHODIMP _MYCLASS_::SerializeToStream(nsIOutputStream *aStream)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_calIIcsSerializer_h__ */
|