1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/content/xslt/public/nsIXSLTProcessorPrivate.idl
3 : */
4 :
5 : #ifndef __gen_nsIXSLTProcessorPrivate_h__
6 : #define __gen_nsIXSLTProcessorPrivate_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: nsIXSLTProcessorPrivate */
19 : #define NS_IXSLTPROCESSORPRIVATE_IID_STR "b8d727f7-67f4-4dc1-a318-ec0c87280816"
20 :
21 : #define NS_IXSLTPROCESSORPRIVATE_IID \
22 : {0xb8d727f7, 0x67f4, 0x4dc1, \
23 : { 0xa3, 0x18, 0xec, 0x0c, 0x87, 0x28, 0x08, 0x16 }}
24 :
25 0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIXSLTProcessorPrivate : public nsISupports {
26 : public:
27 :
28 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IXSLTPROCESSORPRIVATE_IID)
29 :
30 : enum {
31 : DISABLE_ALL_LOADS = 1U
32 : };
33 :
34 : /* attribute unsigned long flags; */
35 : NS_SCRIPTABLE NS_IMETHOD GetFlags(PRUint32 *aFlags) = 0;
36 : NS_SCRIPTABLE NS_IMETHOD SetFlags(PRUint32 aFlags) = 0;
37 :
38 : };
39 :
40 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIXSLTProcessorPrivate, NS_IXSLTPROCESSORPRIVATE_IID)
41 :
42 : /* Use this macro when declaring classes that implement this interface. */
43 : #define NS_DECL_NSIXSLTPROCESSORPRIVATE \
44 : NS_SCRIPTABLE NS_IMETHOD GetFlags(PRUint32 *aFlags); \
45 : NS_SCRIPTABLE NS_IMETHOD SetFlags(PRUint32 aFlags);
46 :
47 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
48 : #define NS_FORWARD_NSIXSLTPROCESSORPRIVATE(_to) \
49 : NS_SCRIPTABLE NS_IMETHOD GetFlags(PRUint32 *aFlags) { return _to GetFlags(aFlags); } \
50 : NS_SCRIPTABLE NS_IMETHOD SetFlags(PRUint32 aFlags) { return _to SetFlags(aFlags); }
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_NSIXSLTPROCESSORPRIVATE(_to) \
54 : NS_SCRIPTABLE NS_IMETHOD GetFlags(PRUint32 *aFlags) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFlags(aFlags); } \
55 : NS_SCRIPTABLE NS_IMETHOD SetFlags(PRUint32 aFlags) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFlags(aFlags); }
56 :
57 : #if 0
58 : /* Use the code below as a template for the implementation class for this interface. */
59 :
60 : /* Header file */
61 : class nsXSLTProcessorPrivate : public nsIXSLTProcessorPrivate
62 : {
63 : public:
64 : NS_DECL_ISUPPORTS
65 : NS_DECL_NSIXSLTPROCESSORPRIVATE
66 :
67 : nsXSLTProcessorPrivate();
68 :
69 : private:
70 : ~nsXSLTProcessorPrivate();
71 :
72 : protected:
73 : /* additional members */
74 : };
75 :
76 : /* Implementation file */
77 : NS_IMPL_ISUPPORTS1(nsXSLTProcessorPrivate, nsIXSLTProcessorPrivate)
78 :
79 : nsXSLTProcessorPrivate::nsXSLTProcessorPrivate()
80 : {
81 : /* member initializers and constructor code */
82 : }
83 :
84 : nsXSLTProcessorPrivate::~nsXSLTProcessorPrivate()
85 : {
86 : /* destructor code */
87 : }
88 :
89 : /* attribute unsigned long flags; */
90 : NS_IMETHODIMP nsXSLTProcessorPrivate::GetFlags(PRUint32 *aFlags)
91 : {
92 : return NS_ERROR_NOT_IMPLEMENTED;
93 : }
94 : NS_IMETHODIMP nsXSLTProcessorPrivate::SetFlags(PRUint32 aFlags)
95 : {
96 : return NS_ERROR_NOT_IMPLEMENTED;
97 : }
98 :
99 : /* End of implementation class template. */
100 : #endif
101 :
102 :
103 : #endif /* __gen_nsIXSLTProcessorPrivate_h__ */
|