LCOV - code coverage report
Current view: top level - obj-x86_64-pc-linux-gnu/dist/include - nsIMultiPartChannel.h (source / functions) Hit Total Coverage
Test: output.info Lines: 0 1 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 1 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/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 "4fefb490-5567-11e5-a837-0800200c9a66"
      22             : 
      23             : #define NS_IMULTIPARTCHANNEL_IID \
      24             :   {0x4fefb490, 0x5567, 0x11e5, \
      25             :     { 0xa8, 0x37, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66 }}
      26             : 
      27           0 : class NS_NO_VTABLE nsIMultiPartChannel : public nsISupports {
      28             :  public:
      29             : 
      30             :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMULTIPARTCHANNEL_IID)
      31             : 
      32             :   /* readonly attribute nsIChannel baseChannel; */
      33             :   NS_IMETHOD GetBaseChannel(nsIChannel * *aBaseChannel) = 0;
      34             : 
      35             :   /* readonly attribute uint32_t partID; */
      36             :   NS_IMETHOD GetPartID(uint32_t *aPartID) = 0;
      37             : 
      38             :   /* readonly attribute boolean isLastPart; */
      39             :   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_IMETHOD GetBaseChannel(nsIChannel * *aBaseChannel) override; \
      48             :   NS_IMETHOD GetPartID(uint32_t *aPartID) override; \
      49             :   NS_IMETHOD GetIsLastPart(bool *aIsLastPart) override; 
      50             : 
      51             : /* Use this macro when declaring the members of this interface when the
      52             :    class doesn't implement the interface. This is useful for forwarding. */
      53             : #define NS_DECL_NON_VIRTUAL_NSIMULTIPARTCHANNEL \
      54             :   nsresult GetBaseChannel(nsIChannel * *aBaseChannel); \
      55             :   nsresult GetPartID(uint32_t *aPartID); \
      56             :   nsresult GetIsLastPart(bool *aIsLastPart); 
      57             : 
      58             : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      59             : #define NS_FORWARD_NSIMULTIPARTCHANNEL(_to) \
      60             :   NS_IMETHOD GetBaseChannel(nsIChannel * *aBaseChannel) override { return _to GetBaseChannel(aBaseChannel); } \
      61             :   NS_IMETHOD GetPartID(uint32_t *aPartID) override { return _to GetPartID(aPartID); } \
      62             :   NS_IMETHOD GetIsLastPart(bool *aIsLastPart) override { return _to GetIsLastPart(aIsLastPart); } 
      63             : 
      64             : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      65             : #define NS_FORWARD_SAFE_NSIMULTIPARTCHANNEL(_to) \
      66             :   NS_IMETHOD GetBaseChannel(nsIChannel * *aBaseChannel) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBaseChannel(aBaseChannel); } \
      67             :   NS_IMETHOD GetPartID(uint32_t *aPartID) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPartID(aPartID); } \
      68             :   NS_IMETHOD GetIsLastPart(bool *aIsLastPart) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsLastPart(aIsLastPart); } 
      69             : 
      70             : #if 0
      71             : /* Use the code below as a template for the implementation class for this interface. */
      72             : 
      73             : /* Header file */
      74             : class nsMultiPartChannel : public nsIMultiPartChannel
      75             : {
      76             : public:
      77             :   NS_DECL_ISUPPORTS
      78             :   NS_DECL_NSIMULTIPARTCHANNEL
      79             : 
      80             :   nsMultiPartChannel();
      81             : 
      82             : private:
      83             :   ~nsMultiPartChannel();
      84             : 
      85             : protected:
      86             :   /* additional members */
      87             : };
      88             : 
      89             : /* Implementation file */
      90             : NS_IMPL_ISUPPORTS(nsMultiPartChannel, nsIMultiPartChannel)
      91             : 
      92             : nsMultiPartChannel::nsMultiPartChannel()
      93             : {
      94             :   /* member initializers and constructor code */
      95             : }
      96             : 
      97             : nsMultiPartChannel::~nsMultiPartChannel()
      98             : {
      99             :   /* destructor code */
     100             : }
     101             : 
     102             : /* readonly attribute nsIChannel baseChannel; */
     103             : NS_IMETHODIMP nsMultiPartChannel::GetBaseChannel(nsIChannel * *aBaseChannel)
     104             : {
     105             :     return NS_ERROR_NOT_IMPLEMENTED;
     106             : }
     107             : 
     108             : /* readonly attribute uint32_t partID; */
     109             : NS_IMETHODIMP nsMultiPartChannel::GetPartID(uint32_t *aPartID)
     110             : {
     111             :     return NS_ERROR_NOT_IMPLEMENTED;
     112             : }
     113             : 
     114             : /* readonly attribute boolean isLastPart; */
     115             : NS_IMETHODIMP nsMultiPartChannel::GetIsLastPart(bool *aIsLastPart)
     116             : {
     117             :     return NS_ERROR_NOT_IMPLEMENTED;
     118             : }
     119             : 
     120             : /* End of implementation class template. */
     121             : #endif
     122             : 
     123             : 
     124             : #endif /* __gen_nsIMultiPartChannel_h__ */

Generated by: LCOV version 1.13