LCOV - code coverage report
Current view: directory - objdir/dist/include - nsIDOMSVGCircleElement.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/nsIDOMSVGCircleElement.idl
       3                 :  */
       4                 : 
       5                 : #ifndef __gen_nsIDOMSVGCircleElement_h__
       6                 : #define __gen_nsIDOMSVGCircleElement_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:    nsIDOMSVGCircleElement */
      21                 : #define NS_IDOMSVGCIRCLEELEMENT_IID_STR "5d80ae99-417a-4454-96bd-3a9a2b03eee9"
      22                 : 
      23                 : #define NS_IDOMSVGCIRCLEELEMENT_IID \
      24                 :   {0x5d80ae99, 0x417a, 0x4454, \
      25                 :     { 0x96, 0xbd, 0x3a, 0x9a, 0x2b, 0x03, 0xee, 0xe9 }}
      26                 : 
      27               0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMSVGCircleElement : public nsIDOMSVGElement {
      28                 :  public: 
      29                 : 
      30                 :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMSVGCIRCLEELEMENT_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 r; */
      39                 :   NS_SCRIPTABLE NS_IMETHOD GetR(nsIDOMSVGAnimatedLength * *aR) = 0;
      40                 : 
      41                 : };
      42                 : 
      43                 :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMSVGCircleElement, NS_IDOMSVGCIRCLEELEMENT_IID)
      44                 : 
      45                 : /* Use this macro when declaring classes that implement this interface. */
      46                 : #define NS_DECL_NSIDOMSVGCIRCLEELEMENT \
      47                 :   NS_SCRIPTABLE NS_IMETHOD GetCx(nsIDOMSVGAnimatedLength * *aCx); \
      48                 :   NS_SCRIPTABLE NS_IMETHOD GetCy(nsIDOMSVGAnimatedLength * *aCy); \
      49                 :   NS_SCRIPTABLE NS_IMETHOD GetR(nsIDOMSVGAnimatedLength * *aR); 
      50                 : 
      51                 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      52                 : #define NS_FORWARD_NSIDOMSVGCIRCLEELEMENT(_to) \
      53                 :   NS_SCRIPTABLE NS_IMETHOD GetCx(nsIDOMSVGAnimatedLength * *aCx) { return _to GetCx(aCx); } \
      54                 :   NS_SCRIPTABLE NS_IMETHOD GetCy(nsIDOMSVGAnimatedLength * *aCy) { return _to GetCy(aCy); } \
      55                 :   NS_SCRIPTABLE NS_IMETHOD GetR(nsIDOMSVGAnimatedLength * *aR) { return _to GetR(aR); } 
      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_NSIDOMSVGCIRCLEELEMENT(_to) \
      59                 :   NS_SCRIPTABLE NS_IMETHOD GetCx(nsIDOMSVGAnimatedLength * *aCx) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCx(aCx); } \
      60                 :   NS_SCRIPTABLE NS_IMETHOD GetCy(nsIDOMSVGAnimatedLength * *aCy) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCy(aCy); } \
      61                 :   NS_SCRIPTABLE NS_IMETHOD GetR(nsIDOMSVGAnimatedLength * *aR) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetR(aR); } 
      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 nsDOMSVGCircleElement : public nsIDOMSVGCircleElement
      68                 : {
      69                 : public:
      70                 :   NS_DECL_ISUPPORTS
      71                 :   NS_DECL_NSIDOMSVGCIRCLEELEMENT
      72                 : 
      73                 :   nsDOMSVGCircleElement();
      74                 : 
      75                 : private:
      76                 :   ~nsDOMSVGCircleElement();
      77                 : 
      78                 : protected:
      79                 :   /* additional members */
      80                 : };
      81                 : 
      82                 : /* Implementation file */
      83                 : NS_IMPL_ISUPPORTS1(nsDOMSVGCircleElement, nsIDOMSVGCircleElement)
      84                 : 
      85                 : nsDOMSVGCircleElement::nsDOMSVGCircleElement()
      86                 : {
      87                 :   /* member initializers and constructor code */
      88                 : }
      89                 : 
      90                 : nsDOMSVGCircleElement::~nsDOMSVGCircleElement()
      91                 : {
      92                 :   /* destructor code */
      93                 : }
      94                 : 
      95                 : /* readonly attribute nsIDOMSVGAnimatedLength cx; */
      96                 : NS_IMETHODIMP nsDOMSVGCircleElement::GetCx(nsIDOMSVGAnimatedLength * *aCx)
      97                 : {
      98                 :     return NS_ERROR_NOT_IMPLEMENTED;
      99                 : }
     100                 : 
     101                 : /* readonly attribute nsIDOMSVGAnimatedLength cy; */
     102                 : NS_IMETHODIMP nsDOMSVGCircleElement::GetCy(nsIDOMSVGAnimatedLength * *aCy)
     103                 : {
     104                 :     return NS_ERROR_NOT_IMPLEMENTED;
     105                 : }
     106                 : 
     107                 : /* readonly attribute nsIDOMSVGAnimatedLength r; */
     108                 : NS_IMETHODIMP nsDOMSVGCircleElement::GetR(nsIDOMSVGAnimatedLength * *aR)
     109                 : {
     110                 :     return NS_ERROR_NOT_IMPLEMENTED;
     111                 : }
     112                 : 
     113                 : /* End of implementation class template. */
     114                 : #endif
     115                 : 
     116                 : 
     117                 : #endif /* __gen_nsIDOMSVGCircleElement_h__ */

Generated by: LCOV version 1.7