LCOV - code coverage report
Current view: directory - objdir/dist/include - nsIDOMSVGEllipseElement.h (source / functions) Found Hit Coverage
Test: app.info Lines: 1 0 0.0 %
Date: 2012-06-02 Functions: 1 0 0.0 %

       1                 : /*
       2                 :  * DO NOT EDIT.  THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/dom/interfaces/svg/nsIDOMSVGEllipseElement.idl
       3                 :  */
       4                 : 
       5                 : #ifndef __gen_nsIDOMSVGEllipseElement_h__
       6                 : #define __gen_nsIDOMSVGEllipseElement_h__
       7                 : 
       8                 : 
       9                 : #ifndef __gen_nsIDOMSVGElement_h__
      10                 : #include "nsIDOMSVGElement.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 nsIDOMSVGAnimatedLength; /* forward declaration */
      18                 : 
      19                 : 
      20                 : /* starting interface:    nsIDOMSVGEllipseElement */
      21                 : #define NS_IDOMSVGELLIPSEELEMENT_IID_STR "162e83b9-78e5-4794-83ef-07e501bd0226"
      22                 : 
      23                 : #define NS_IDOMSVGELLIPSEELEMENT_IID \
      24                 :   {0x162e83b9, 0x78e5, 0x4794, \
      25                 :     { 0x83, 0xef, 0x07, 0xe5, 0x01, 0xbd, 0x02, 0x26 }}
      26                 : 
      27               0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMSVGEllipseElement : public nsIDOMSVGElement {
      28                 :  public: 
      29                 : 
      30                 :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMSVGELLIPSEELEMENT_IID)
      31                 : 
      32                 :   /* readonly attribute nsIDOMSVGAnimatedLength cx; */
      33                 :   NS_SCRIPTABLE NS_IMETHOD GetCx(nsIDOMSVGAnimatedLength * *aCx) = 0;
      34                 : 
      35                 :   /* readonly attribute nsIDOMSVGAnimatedLength cy; */
      36                 :   NS_SCRIPTABLE NS_IMETHOD GetCy(nsIDOMSVGAnimatedLength * *aCy) = 0;
      37                 : 
      38                 :   /* readonly attribute nsIDOMSVGAnimatedLength rx; */
      39                 :   NS_SCRIPTABLE NS_IMETHOD GetRx(nsIDOMSVGAnimatedLength * *aRx) = 0;
      40                 : 
      41                 :   /* readonly attribute nsIDOMSVGAnimatedLength ry; */
      42                 :   NS_SCRIPTABLE NS_IMETHOD GetRy(nsIDOMSVGAnimatedLength * *aRy) = 0;
      43                 : 
      44                 : };
      45                 : 
      46                 :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMSVGEllipseElement, NS_IDOMSVGELLIPSEELEMENT_IID)
      47                 : 
      48                 : /* Use this macro when declaring classes that implement this interface. */
      49                 : #define NS_DECL_NSIDOMSVGELLIPSEELEMENT \
      50                 :   NS_SCRIPTABLE NS_IMETHOD GetCx(nsIDOMSVGAnimatedLength * *aCx); \
      51                 :   NS_SCRIPTABLE NS_IMETHOD GetCy(nsIDOMSVGAnimatedLength * *aCy); \
      52                 :   NS_SCRIPTABLE NS_IMETHOD GetRx(nsIDOMSVGAnimatedLength * *aRx); \
      53                 :   NS_SCRIPTABLE NS_IMETHOD GetRy(nsIDOMSVGAnimatedLength * *aRy); 
      54                 : 
      55                 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      56                 : #define NS_FORWARD_NSIDOMSVGELLIPSEELEMENT(_to) \
      57                 :   NS_SCRIPTABLE NS_IMETHOD GetCx(nsIDOMSVGAnimatedLength * *aCx) { return _to GetCx(aCx); } \
      58                 :   NS_SCRIPTABLE NS_IMETHOD GetCy(nsIDOMSVGAnimatedLength * *aCy) { return _to GetCy(aCy); } \
      59                 :   NS_SCRIPTABLE NS_IMETHOD GetRx(nsIDOMSVGAnimatedLength * *aRx) { return _to GetRx(aRx); } \
      60                 :   NS_SCRIPTABLE NS_IMETHOD GetRy(nsIDOMSVGAnimatedLength * *aRy) { return _to GetRy(aRy); } 
      61                 : 
      62                 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      63                 : #define NS_FORWARD_SAFE_NSIDOMSVGELLIPSEELEMENT(_to) \
      64                 :   NS_SCRIPTABLE NS_IMETHOD GetCx(nsIDOMSVGAnimatedLength * *aCx) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCx(aCx); } \
      65                 :   NS_SCRIPTABLE NS_IMETHOD GetCy(nsIDOMSVGAnimatedLength * *aCy) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCy(aCy); } \
      66                 :   NS_SCRIPTABLE NS_IMETHOD GetRx(nsIDOMSVGAnimatedLength * *aRx) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRx(aRx); } \
      67                 :   NS_SCRIPTABLE NS_IMETHOD GetRy(nsIDOMSVGAnimatedLength * *aRy) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRy(aRy); } 
      68                 : 
      69                 : #if 0
      70                 : /* Use the code below as a template for the implementation class for this interface. */
      71                 : 
      72                 : /* Header file */
      73                 : class nsDOMSVGEllipseElement : public nsIDOMSVGEllipseElement
      74                 : {
      75                 : public:
      76                 :   NS_DECL_ISUPPORTS
      77                 :   NS_DECL_NSIDOMSVGELLIPSEELEMENT
      78                 : 
      79                 :   nsDOMSVGEllipseElement();
      80                 : 
      81                 : private:
      82                 :   ~nsDOMSVGEllipseElement();
      83                 : 
      84                 : protected:
      85                 :   /* additional members */
      86                 : };
      87                 : 
      88                 : /* Implementation file */
      89                 : NS_IMPL_ISUPPORTS1(nsDOMSVGEllipseElement, nsIDOMSVGEllipseElement)
      90                 : 
      91                 : nsDOMSVGEllipseElement::nsDOMSVGEllipseElement()
      92                 : {
      93                 :   /* member initializers and constructor code */
      94                 : }
      95                 : 
      96                 : nsDOMSVGEllipseElement::~nsDOMSVGEllipseElement()
      97                 : {
      98                 :   /* destructor code */
      99                 : }
     100                 : 
     101                 : /* readonly attribute nsIDOMSVGAnimatedLength cx; */
     102                 : NS_IMETHODIMP nsDOMSVGEllipseElement::GetCx(nsIDOMSVGAnimatedLength * *aCx)
     103                 : {
     104                 :     return NS_ERROR_NOT_IMPLEMENTED;
     105                 : }
     106                 : 
     107                 : /* readonly attribute nsIDOMSVGAnimatedLength cy; */
     108                 : NS_IMETHODIMP nsDOMSVGEllipseElement::GetCy(nsIDOMSVGAnimatedLength * *aCy)
     109                 : {
     110                 :     return NS_ERROR_NOT_IMPLEMENTED;
     111                 : }
     112                 : 
     113                 : /* readonly attribute nsIDOMSVGAnimatedLength rx; */
     114                 : NS_IMETHODIMP nsDOMSVGEllipseElement::GetRx(nsIDOMSVGAnimatedLength * *aRx)
     115                 : {
     116                 :     return NS_ERROR_NOT_IMPLEMENTED;
     117                 : }
     118                 : 
     119                 : /* readonly attribute nsIDOMSVGAnimatedLength ry; */
     120                 : NS_IMETHODIMP nsDOMSVGEllipseElement::GetRy(nsIDOMSVGAnimatedLength * *aRy)
     121                 : {
     122                 :     return NS_ERROR_NOT_IMPLEMENTED;
     123                 : }
     124                 : 
     125                 : /* End of implementation class template. */
     126                 : #endif
     127                 : 
     128                 : 
     129                 : #endif /* __gen_nsIDOMSVGEllipseElement_h__ */

Generated by: LCOV version 1.7