LCOV - code coverage report
Current view: directory - objdir/dist/include - nsIDOMElementTimeControl.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/smil/nsIDOMElementTimeControl.idl
       3                 :  */
       4                 : 
       5                 : #ifndef __gen_nsIDOMElementTimeControl_h__
       6                 : #define __gen_nsIDOMElementTimeControl_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                 : 
      18                 : /* starting interface:    nsIDOMElementTimeControl */
      19                 : #define NS_IDOMELEMENTTIMECONTROL_IID_STR "276a6678-7844-4d5e-8dfe-938c46089b84"
      20                 : 
      21                 : #define NS_IDOMELEMENTTIMECONTROL_IID \
      22                 :   {0x276a6678, 0x7844, 0x4d5e, \
      23                 :     { 0x8d, 0xfe, 0x93, 0x8c, 0x46, 0x08, 0x9b, 0x84 }}
      24                 : 
      25               0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMElementTimeControl : public nsISupports {
      26                 :  public: 
      27                 : 
      28                 :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMELEMENTTIMECONTROL_IID)
      29                 : 
      30                 :   /* void beginElement (); */
      31                 :   NS_SCRIPTABLE NS_IMETHOD BeginElement(void) = 0;
      32                 : 
      33                 :   /* void beginElementAt (in float offset); */
      34                 :   NS_SCRIPTABLE NS_IMETHOD BeginElementAt(float offset) = 0;
      35                 : 
      36                 :   /* void endElement (); */
      37                 :   NS_SCRIPTABLE NS_IMETHOD EndElement(void) = 0;
      38                 : 
      39                 :   /* void endElementAt (in float offset); */
      40                 :   NS_SCRIPTABLE NS_IMETHOD EndElementAt(float offset) = 0;
      41                 : 
      42                 : };
      43                 : 
      44                 :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMElementTimeControl, NS_IDOMELEMENTTIMECONTROL_IID)
      45                 : 
      46                 : /* Use this macro when declaring classes that implement this interface. */
      47                 : #define NS_DECL_NSIDOMELEMENTTIMECONTROL \
      48                 :   NS_SCRIPTABLE NS_IMETHOD BeginElement(void); \
      49                 :   NS_SCRIPTABLE NS_IMETHOD BeginElementAt(float offset); \
      50                 :   NS_SCRIPTABLE NS_IMETHOD EndElement(void); \
      51                 :   NS_SCRIPTABLE NS_IMETHOD EndElementAt(float offset); 
      52                 : 
      53                 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      54                 : #define NS_FORWARD_NSIDOMELEMENTTIMECONTROL(_to) \
      55                 :   NS_SCRIPTABLE NS_IMETHOD BeginElement(void) { return _to BeginElement(); } \
      56                 :   NS_SCRIPTABLE NS_IMETHOD BeginElementAt(float offset) { return _to BeginElementAt(offset); } \
      57                 :   NS_SCRIPTABLE NS_IMETHOD EndElement(void) { return _to EndElement(); } \
      58                 :   NS_SCRIPTABLE NS_IMETHOD EndElementAt(float offset) { return _to EndElementAt(offset); } 
      59                 : 
      60                 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      61                 : #define NS_FORWARD_SAFE_NSIDOMELEMENTTIMECONTROL(_to) \
      62                 :   NS_SCRIPTABLE NS_IMETHOD BeginElement(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->BeginElement(); } \
      63                 :   NS_SCRIPTABLE NS_IMETHOD BeginElementAt(float offset) { return !_to ? NS_ERROR_NULL_POINTER : _to->BeginElementAt(offset); } \
      64                 :   NS_SCRIPTABLE NS_IMETHOD EndElement(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->EndElement(); } \
      65                 :   NS_SCRIPTABLE NS_IMETHOD EndElementAt(float offset) { return !_to ? NS_ERROR_NULL_POINTER : _to->EndElementAt(offset); } 
      66                 : 
      67                 : #if 0
      68                 : /* Use the code below as a template for the implementation class for this interface. */
      69                 : 
      70                 : /* Header file */
      71                 : class nsDOMElementTimeControl : public nsIDOMElementTimeControl
      72                 : {
      73                 : public:
      74                 :   NS_DECL_ISUPPORTS
      75                 :   NS_DECL_NSIDOMELEMENTTIMECONTROL
      76                 : 
      77                 :   nsDOMElementTimeControl();
      78                 : 
      79                 : private:
      80                 :   ~nsDOMElementTimeControl();
      81                 : 
      82                 : protected:
      83                 :   /* additional members */
      84                 : };
      85                 : 
      86                 : /* Implementation file */
      87                 : NS_IMPL_ISUPPORTS1(nsDOMElementTimeControl, nsIDOMElementTimeControl)
      88                 : 
      89                 : nsDOMElementTimeControl::nsDOMElementTimeControl()
      90                 : {
      91                 :   /* member initializers and constructor code */
      92                 : }
      93                 : 
      94                 : nsDOMElementTimeControl::~nsDOMElementTimeControl()
      95                 : {
      96                 :   /* destructor code */
      97                 : }
      98                 : 
      99                 : /* void beginElement (); */
     100                 : NS_IMETHODIMP nsDOMElementTimeControl::BeginElement()
     101                 : {
     102                 :     return NS_ERROR_NOT_IMPLEMENTED;
     103                 : }
     104                 : 
     105                 : /* void beginElementAt (in float offset); */
     106                 : NS_IMETHODIMP nsDOMElementTimeControl::BeginElementAt(float offset)
     107                 : {
     108                 :     return NS_ERROR_NOT_IMPLEMENTED;
     109                 : }
     110                 : 
     111                 : /* void endElement (); */
     112                 : NS_IMETHODIMP nsDOMElementTimeControl::EndElement()
     113                 : {
     114                 :     return NS_ERROR_NOT_IMPLEMENTED;
     115                 : }
     116                 : 
     117                 : /* void endElementAt (in float offset); */
     118                 : NS_IMETHODIMP nsDOMElementTimeControl::EndElementAt(float offset)
     119                 : {
     120                 :     return NS_ERROR_NOT_IMPLEMENTED;
     121                 : }
     122                 : 
     123                 : /* End of implementation class template. */
     124                 : #endif
     125                 : 
     126                 : 
     127                 : #endif /* __gen_nsIDOMElementTimeControl_h__ */

Generated by: LCOV version 1.7