Line data Source code
1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsICodeCoverage.idl
3 : */
4 :
5 : #ifndef __gen_nsICodeCoverage_h__
6 : #define __gen_nsICodeCoverage_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 :
18 : /* starting interface: nsICodeCoverage */
19 : #define NS_ICODECOVERAGE_IID_STR "57d92056-37b4-4d0a-a52f-deb8f6dac8bc"
20 :
21 : #define NS_ICODECOVERAGE_IID \
22 : {0x57d92056, 0x37b4, 0x4d0a, \
23 : { 0xa5, 0x2f, 0xde, 0xb8, 0xf6, 0xda, 0xc8, 0xbc }}
24 :
25 1 : class NS_NO_VTABLE nsICodeCoverage : public nsISupports {
26 : public:
27 :
28 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICODECOVERAGE_IID)
29 :
30 : /* void dumpCounters (); */
31 : NS_IMETHOD DumpCounters(void) = 0;
32 :
33 : /* void resetCounters (); */
34 : NS_IMETHOD ResetCounters(void) = 0;
35 :
36 : };
37 :
38 : NS_DEFINE_STATIC_IID_ACCESSOR(nsICodeCoverage, NS_ICODECOVERAGE_IID)
39 :
40 : /* Use this macro when declaring classes that implement this interface. */
41 : #define NS_DECL_NSICODECOVERAGE \
42 : NS_IMETHOD DumpCounters(void) override; \
43 : NS_IMETHOD ResetCounters(void) override;
44 :
45 : /* Use this macro when declaring the members of this interface when the
46 : class doesn't implement the interface. This is useful for forwarding. */
47 : #define NS_DECL_NON_VIRTUAL_NSICODECOVERAGE \
48 : nsresult DumpCounters(void); \
49 : nsresult ResetCounters(void);
50 :
51 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
52 : #define NS_FORWARD_NSICODECOVERAGE(_to) \
53 : NS_IMETHOD DumpCounters(void) override { return _to DumpCounters(); } \
54 : NS_IMETHOD ResetCounters(void) override { return _to ResetCounters(); }
55 :
56 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
57 : #define NS_FORWARD_SAFE_NSICODECOVERAGE(_to) \
58 : NS_IMETHOD DumpCounters(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DumpCounters(); } \
59 : NS_IMETHOD ResetCounters(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ResetCounters(); }
60 :
61 : #if 0
62 : /* Use the code below as a template for the implementation class for this interface. */
63 :
64 : /* Header file */
65 : class nsCodeCoverage : public nsICodeCoverage
66 : {
67 : public:
68 : NS_DECL_ISUPPORTS
69 : NS_DECL_NSICODECOVERAGE
70 :
71 : nsCodeCoverage();
72 :
73 : private:
74 : ~nsCodeCoverage();
75 :
76 : protected:
77 : /* additional members */
78 : };
79 :
80 : /* Implementation file */
81 : NS_IMPL_ISUPPORTS(nsCodeCoverage, nsICodeCoverage)
82 :
83 : nsCodeCoverage::nsCodeCoverage()
84 : {
85 : /* member initializers and constructor code */
86 : }
87 :
88 : nsCodeCoverage::~nsCodeCoverage()
89 : {
90 : /* destructor code */
91 : }
92 :
93 : /* void dumpCounters (); */
94 : NS_IMETHODIMP nsCodeCoverage::DumpCounters()
95 : {
96 : return NS_ERROR_NOT_IMPLEMENTED;
97 : }
98 :
99 : /* void resetCounters (); */
100 : NS_IMETHODIMP nsCodeCoverage::ResetCounters()
101 : {
102 : return NS_ERROR_NOT_IMPLEMENTED;
103 : }
104 :
105 : /* End of implementation class template. */
106 : #endif
107 :
108 :
109 : #endif /* __gen_nsICodeCoverage_h__ */
|