LCOV - code coverage report
Current view: top level - obj-x86_64-pc-linux-gnu/dist/include - nsIDOMHTMLFrameSetElement.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/nsIDOMHTMLFrameSetElement.idl
       3             :  */
       4             : 
       5             : #ifndef __gen_nsIDOMHTMLFrameSetElement_h__
       6             : #define __gen_nsIDOMHTMLFrameSetElement_h__
       7             : 
       8             : 
       9             : #ifndef __gen_nsIDOMHTMLElement_h__
      10             : #include "nsIDOMHTMLElement.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             : #include "jspubtd.h"
      18             : 
      19             : /* starting interface:    nsIDOMHTMLFrameSetElement */
      20             : #define NS_IDOMHTMLFRAMESETELEMENT_IID_STR "14b29269-c387-4cff-8463-b0871ca0be3a"
      21             : 
      22             : #define NS_IDOMHTMLFRAMESETELEMENT_IID \
      23             :   {0x14b29269, 0xc387, 0x4cff, \
      24             :     { 0x84, 0x63, 0xb0, 0x87, 0x1c, 0xa0, 0xbe, 0x3a }}
      25             : 
      26           0 : class NS_NO_VTABLE nsIDOMHTMLFrameSetElement : public nsISupports {
      27             :  public:
      28             : 
      29             :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLFRAMESETELEMENT_IID)
      30             : 
      31             :   /* attribute DOMString cols; */
      32             :   NS_IMETHOD GetCols(nsAString & aCols) = 0;
      33             :   NS_IMETHOD SetCols(const nsAString & aCols) = 0;
      34             : 
      35             :   /* attribute DOMString rows; */
      36             :   NS_IMETHOD GetRows(nsAString & aRows) = 0;
      37             :   NS_IMETHOD SetRows(const nsAString & aRows) = 0;
      38             : 
      39             : };
      40             : 
      41             :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLFrameSetElement, NS_IDOMHTMLFRAMESETELEMENT_IID)
      42             : 
      43             : /* Use this macro when declaring classes that implement this interface. */
      44             : #define NS_DECL_NSIDOMHTMLFRAMESETELEMENT \
      45             :   NS_IMETHOD GetCols(nsAString & aCols) override; \
      46             :   NS_IMETHOD SetCols(const nsAString & aCols) override; \
      47             :   NS_IMETHOD GetRows(nsAString & aRows) override; \
      48             :   NS_IMETHOD SetRows(const nsAString & aRows) override; 
      49             : 
      50             : /* Use this macro when declaring the members of this interface when the
      51             :    class doesn't implement the interface. This is useful for forwarding. */
      52             : #define NS_DECL_NON_VIRTUAL_NSIDOMHTMLFRAMESETELEMENT \
      53             :   nsresult GetCols(nsAString & aCols); \
      54             :   nsresult SetCols(const nsAString & aCols); \
      55             :   nsresult GetRows(nsAString & aRows); \
      56             :   nsresult SetRows(const nsAString & aRows); 
      57             : 
      58             : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      59             : #define NS_FORWARD_NSIDOMHTMLFRAMESETELEMENT(_to) \
      60             :   NS_IMETHOD GetCols(nsAString & aCols) override { return _to GetCols(aCols); } \
      61             :   NS_IMETHOD SetCols(const nsAString & aCols) override { return _to SetCols(aCols); } \
      62             :   NS_IMETHOD GetRows(nsAString & aRows) override { return _to GetRows(aRows); } \
      63             :   NS_IMETHOD SetRows(const nsAString & aRows) override { return _to SetRows(aRows); } 
      64             : 
      65             : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      66             : #define NS_FORWARD_SAFE_NSIDOMHTMLFRAMESETELEMENT(_to) \
      67             :   NS_IMETHOD GetCols(nsAString & aCols) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCols(aCols); } \
      68             :   NS_IMETHOD SetCols(const nsAString & aCols) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCols(aCols); } \
      69             :   NS_IMETHOD GetRows(nsAString & aRows) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRows(aRows); } \
      70             :   NS_IMETHOD SetRows(const nsAString & aRows) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRows(aRows); } 
      71             : 
      72             : #if 0
      73             : /* Use the code below as a template for the implementation class for this interface. */
      74             : 
      75             : /* Header file */
      76             : class nsDOMHTMLFrameSetElement : public nsIDOMHTMLFrameSetElement
      77             : {
      78             : public:
      79             :   NS_DECL_ISUPPORTS
      80             :   NS_DECL_NSIDOMHTMLFRAMESETELEMENT
      81             : 
      82             :   nsDOMHTMLFrameSetElement();
      83             : 
      84             : private:
      85             :   ~nsDOMHTMLFrameSetElement();
      86             : 
      87             : protected:
      88             :   /* additional members */
      89             : };
      90             : 
      91             : /* Implementation file */
      92             : NS_IMPL_ISUPPORTS(nsDOMHTMLFrameSetElement, nsIDOMHTMLFrameSetElement)
      93             : 
      94             : nsDOMHTMLFrameSetElement::nsDOMHTMLFrameSetElement()
      95             : {
      96             :   /* member initializers and constructor code */
      97             : }
      98             : 
      99             : nsDOMHTMLFrameSetElement::~nsDOMHTMLFrameSetElement()
     100             : {
     101             :   /* destructor code */
     102             : }
     103             : 
     104             : /* attribute DOMString cols; */
     105             : NS_IMETHODIMP nsDOMHTMLFrameSetElement::GetCols(nsAString & aCols)
     106             : {
     107             :     return NS_ERROR_NOT_IMPLEMENTED;
     108             : }
     109             : NS_IMETHODIMP nsDOMHTMLFrameSetElement::SetCols(const nsAString & aCols)
     110             : {
     111             :     return NS_ERROR_NOT_IMPLEMENTED;
     112             : }
     113             : 
     114             : /* attribute DOMString rows; */
     115             : NS_IMETHODIMP nsDOMHTMLFrameSetElement::GetRows(nsAString & aRows)
     116             : {
     117             :     return NS_ERROR_NOT_IMPLEMENTED;
     118             : }
     119             : NS_IMETHODIMP nsDOMHTMLFrameSetElement::SetRows(const nsAString & aRows)
     120             : {
     121             :     return NS_ERROR_NOT_IMPLEMENTED;
     122             : }
     123             : 
     124             : /* End of implementation class template. */
     125             : #endif
     126             : 
     127             : 
     128             : #endif /* __gen_nsIDOMHTMLFrameSetElement_h__ */

Generated by: LCOV version 1.13