Line data Source code
1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/IJSDebugger.idl
3 : */
4 :
5 : #ifndef __gen_IJSDebugger_h__
6 : #define __gen_IJSDebugger_h__
7 :
8 :
9 : #ifndef __gen_nsISupports_h__
10 : #include "nsISupports.h"
11 : #endif
12 :
13 : #include "js/Value.h"
14 :
15 : /* For IDL files that don't want to include root IDL files. */
16 : #ifndef NS_NO_VTABLE
17 : #define NS_NO_VTABLE
18 : #endif
19 :
20 : /* starting interface: IJSDebugger */
21 : #define IJSDEBUGGER_IID_STR "a36fa816-31da-4b23-bc97-6412771f0867"
22 :
23 : #define IJSDEBUGGER_IID \
24 : {0xa36fa816, 0x31da, 0x4b23, \
25 : { 0xbc, 0x97, 0x64, 0x12, 0x77, 0x1f, 0x08, 0x67 }}
26 :
27 0 : class NS_NO_VTABLE IJSDebugger : public nsISupports {
28 : public:
29 :
30 : NS_DECLARE_STATIC_IID_ACCESSOR(IJSDEBUGGER_IID)
31 :
32 : /* [implicit_jscontext] void addClass (in jsval global); */
33 : NS_IMETHOD AddClass(JS::HandleValue global, JSContext* cx) = 0;
34 :
35 : };
36 :
37 : NS_DEFINE_STATIC_IID_ACCESSOR(IJSDebugger, IJSDEBUGGER_IID)
38 :
39 : /* Use this macro when declaring classes that implement this interface. */
40 : #define NS_DECL_IJSDEBUGGER \
41 : NS_IMETHOD AddClass(JS::HandleValue global, JSContext* cx) override;
42 :
43 : /* Use this macro when declaring the members of this interface when the
44 : class doesn't implement the interface. This is useful for forwarding. */
45 : #define NS_DECL_NON_VIRTUAL_IJSDEBUGGER \
46 : nsresult AddClass(JS::HandleValue global, JSContext* cx);
47 :
48 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
49 : #define NS_FORWARD_IJSDEBUGGER(_to) \
50 : NS_IMETHOD AddClass(JS::HandleValue global, JSContext* cx) override { return _to AddClass(global, cx); }
51 :
52 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
53 : #define NS_FORWARD_SAFE_IJSDEBUGGER(_to) \
54 : NS_IMETHOD AddClass(JS::HandleValue global, JSContext* cx) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddClass(global, cx); }
55 :
56 : #if 0
57 : /* Use the code below as a template for the implementation class for this interface. */
58 :
59 : /* Header file */
60 : class _MYCLASS_ : public IJSDebugger
61 : {
62 : public:
63 : NS_DECL_ISUPPORTS
64 : NS_DECL_IJSDEBUGGER
65 :
66 : _MYCLASS_();
67 :
68 : private:
69 : ~_MYCLASS_();
70 :
71 : protected:
72 : /* additional members */
73 : };
74 :
75 : /* Implementation file */
76 : NS_IMPL_ISUPPORTS(_MYCLASS_, IJSDebugger)
77 :
78 : _MYCLASS_::_MYCLASS_()
79 : {
80 : /* member initializers and constructor code */
81 : }
82 :
83 : _MYCLASS_::~_MYCLASS_()
84 : {
85 : /* destructor code */
86 : }
87 :
88 : /* [implicit_jscontext] void addClass (in jsval global); */
89 : NS_IMETHODIMP _MYCLASS_::AddClass(JS::HandleValue global, JSContext* cx)
90 : {
91 : return NS_ERROR_NOT_IMPLEMENTED;
92 : }
93 :
94 : /* End of implementation class template. */
95 : #endif
96 :
97 :
98 : #endif /* __gen_IJSDebugger_h__ */
|