1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/netwerk/base/public/nsIMultiPartChannel.idl
3 : */
4 :
5 : #ifndef __gen_nsIMultiPartChannel_h__
6 : #define __gen_nsIMultiPartChannel_h__
7 :
8 :
9 : #ifndef __gen_nsISupports_h__
10 : #include "nsISupports.h"
11 : #endif
12 :
13 : /* For IDL files that don't want to include root IDL files. */
14 : #ifndef NS_NO_VTABLE
15 : #define NS_NO_VTABLE
16 : #endif
17 : class nsIChannel; /* forward declaration */
18 :
19 :
20 : /* starting interface: nsIMultiPartChannel */
21 : #define NS_IMULTIPARTCHANNEL_IID_STR "4b04e835-d131-42af-8bf0-74289f99374f"
22 :
23 : #define NS_IMULTIPARTCHANNEL_IID \
24 : {0x4b04e835, 0xd131, 0x42af, \
25 : { 0x8b, 0xf0, 0x74, 0x28, 0x9f, 0x99, 0x37, 0x4f }}
26 :
27 4 : class NS_NO_VTABLE NS_SCRIPTABLE nsIMultiPartChannel : public nsISupports {
28 : public:
29 :
30 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMULTIPARTCHANNEL_IID)
31 :
32 : /* readonly attribute nsIChannel baseChannel; */
33 : NS_SCRIPTABLE NS_IMETHOD GetBaseChannel(nsIChannel * *aBaseChannel) = 0;
34 :
35 : /* readonly attribute PRUint32 partID; */
36 : NS_SCRIPTABLE NS_IMETHOD GetPartID(PRUint32 *aPartID) = 0;
37 :
38 : /* readonly attribute boolean isLastPart; */
39 : NS_SCRIPTABLE NS_IMETHOD GetIsLastPart(bool *aIsLastPart) = 0;
40 :
41 : };
42 :
43 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIMultiPartChannel, NS_IMULTIPARTCHANNEL_IID)
44 :
45 : /* Use this macro when declaring classes that implement this interface. */
46 : #define NS_DECL_NSIMULTIPARTCHANNEL \
47 : NS_SCRIPTABLE NS_IMETHOD GetBaseChannel(nsIChannel * *aBaseChannel); \
48 : NS_SCRIPTABLE NS_IMETHOD GetPartID(PRUint32 *aPartID); \
49 : NS_SCRIPTABLE NS_IMETHOD GetIsLastPart(bool *aIsLastPart);
50 :
51 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
52 : #define NS_FORWARD_NSIMULTIPARTCHANNEL(_to) \
53 : NS_SCRIPTABLE NS_IMETHOD GetBaseChannel(nsIChannel * *aBaseChannel) { return _to GetBaseChannel(aBaseChannel); } \
54 : NS_SCRIPTABLE NS_IMETHOD GetPartID(PRUint32 *aPartID) { return _to GetPartID(aPartID); } \
55 : NS_SCRIPTABLE NS_IMETHOD GetIsLastPart(bool *aIsLastPart) { return _to GetIsLastPart(aIsLastPart); }
56 :
57 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
58 : #define NS_FORWARD_SAFE_NSIMULTIPARTCHANNEL(_to) \
59 : NS_SCRIPTABLE NS_IMETHOD GetBaseChannel(nsIChannel * *aBaseChannel) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBaseChannel(aBaseChannel); } \
60 : NS_SCRIPTABLE NS_IMETHOD GetPartID(PRUint32 *aPartID) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPartID(aPartID); } \
61 : NS_SCRIPTABLE NS_IMETHOD GetIsLastPart(bool *aIsLastPart) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsLastPart(aIsLastPart); }
62 :
63 : #if 0
64 : /* Use the code below as a template for the implementation class for this interface. */
65 :
66 : /* Header file */
67 : class nsMultiPartChannel : public nsIMultiPartChannel
68 : {
69 : public:
70 : NS_DECL_ISUPPORTS
71 : NS_DECL_NSIMULTIPARTCHANNEL
72 :
73 : nsMultiPartChannel();
74 :
75 : private:
76 : ~nsMultiPartChannel();
77 :
78 : protected:
79 : /* additional members */
80 : };
81 :
82 : /* Implementation file */
83 : NS_IMPL_ISUPPORTS1(nsMultiPartChannel, nsIMultiPartChannel)
84 :
85 : nsMultiPartChannel::nsMultiPartChannel()
86 : {
87 : /* member initializers and constructor code */
88 : }
89 :
90 : nsMultiPartChannel::~nsMultiPartChannel()
91 : {
92 : /* destructor code */
93 : }
94 :
95 : /* readonly attribute nsIChannel baseChannel; */
96 : NS_IMETHODIMP nsMultiPartChannel::GetBaseChannel(nsIChannel * *aBaseChannel)
97 : {
98 : return NS_ERROR_NOT_IMPLEMENTED;
99 : }
100 :
101 : /* readonly attribute PRUint32 partID; */
102 : NS_IMETHODIMP nsMultiPartChannel::GetPartID(PRUint32 *aPartID)
103 : {
104 : return NS_ERROR_NOT_IMPLEMENTED;
105 : }
106 :
107 : /* readonly attribute boolean isLastPart; */
108 : NS_IMETHODIMP nsMultiPartChannel::GetIsLastPart(bool *aIsLastPart)
109 : {
110 : return NS_ERROR_NOT_IMPLEMENTED;
111 : }
112 :
113 : /* End of implementation class template. */
114 : #endif
115 :
116 :
117 : #endif /* __gen_nsIMultiPartChannel_h__ */
|