Line data Source code
1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/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 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 : };
35 :
36 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIXSLTProcessorPrivate, NS_IXSLTPROCESSORPRIVATE_IID)
37 :
38 : /* Use this macro when declaring classes that implement this interface. */
39 : #define NS_DECL_NSIXSLTPROCESSORPRIVATE \
40 :
41 : /* Use this macro when declaring the members of this interface when the
42 : class doesn't implement the interface. This is useful for forwarding. */
43 : #define NS_DECL_NON_VIRTUAL_NSIXSLTPROCESSORPRIVATE \
44 :
45 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
46 : #define NS_FORWARD_NSIXSLTPROCESSORPRIVATE(_to) \
47 :
48 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
49 : #define NS_FORWARD_SAFE_NSIXSLTPROCESSORPRIVATE(_to) \
50 :
51 : #if 0
52 : /* Use the code below as a template for the implementation class for this interface. */
53 :
54 : /* Header file */
55 : class nsXSLTProcessorPrivate : public nsIXSLTProcessorPrivate
56 : {
57 : public:
58 : NS_DECL_ISUPPORTS
59 : NS_DECL_NSIXSLTPROCESSORPRIVATE
60 :
61 : nsXSLTProcessorPrivate();
62 :
63 : private:
64 : ~nsXSLTProcessorPrivate();
65 :
66 : protected:
67 : /* additional members */
68 : };
69 :
70 : /* Implementation file */
71 : NS_IMPL_ISUPPORTS(nsXSLTProcessorPrivate, nsIXSLTProcessorPrivate)
72 :
73 : nsXSLTProcessorPrivate::nsXSLTProcessorPrivate()
74 : {
75 : /* member initializers and constructor code */
76 : }
77 :
78 : nsXSLTProcessorPrivate::~nsXSLTProcessorPrivate()
79 : {
80 : /* destructor code */
81 : }
82 :
83 : /* End of implementation class template. */
84 : #endif
85 :
86 :
87 : #endif /* __gen_nsIXSLTProcessorPrivate_h__ */
|