Line data Source code
1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIReadConfig.idl
3 : */
4 :
5 : #ifndef __gen_nsIReadConfig_h__
6 : #define __gen_nsIReadConfig_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 : #define NS_READCONFIG_CID\
19 : { 0xba5bc4c6,\
20 : 0x1dd1, \
21 : 0x11b2, \
22 : { 0xbb, 0x89, 0xb8, 0x44, 0xc6, 0xec, 0x03, 0x39 }\
23 : }
24 :
25 : #define NS_READCONFIG_CONTRACTID \
26 : "@mozilla.org/readconfig;1"
27 :
28 : /* starting interface: nsIReadConfig */
29 : #define NS_IREADCONFIG_IID_STR "ba5bc4c6-1dd1-11b2-bb89-b844c6ec0339"
30 :
31 : #define NS_IREADCONFIG_IID \
32 : {0xba5bc4c6, 0x1dd1, 0x11b2, \
33 : { 0xbb, 0x89, 0xb8, 0x44, 0xc6, 0xec, 0x03, 0x39 }}
34 :
35 0 : class NS_NO_VTABLE nsIReadConfig : public nsISupports {
36 : public:
37 :
38 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IREADCONFIG_IID)
39 :
40 : };
41 :
42 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIReadConfig, NS_IREADCONFIG_IID)
43 :
44 : /* Use this macro when declaring classes that implement this interface. */
45 : #define NS_DECL_NSIREADCONFIG \
46 : /* no methods! */
47 :
48 : /* Use this macro when declaring the members of this interface when the
49 : class doesn't implement the interface. This is useful for forwarding. */
50 : #define NS_DECL_NON_VIRTUAL_NSIREADCONFIG \
51 : /* no methods! */
52 :
53 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
54 : #define NS_FORWARD_NSIREADCONFIG(_to) \
55 : /* no methods! */
56 :
57 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
58 : #define NS_FORWARD_SAFE_NSIREADCONFIG(_to) \
59 : /* no methods! */
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 nsReadConfig : public nsIReadConfig
66 : {
67 : public:
68 : NS_DECL_ISUPPORTS
69 : NS_DECL_NSIREADCONFIG
70 :
71 : nsReadConfig();
72 :
73 : private:
74 : ~nsReadConfig();
75 :
76 : protected:
77 : /* additional members */
78 : };
79 :
80 : /* Implementation file */
81 : NS_IMPL_ISUPPORTS(nsReadConfig, nsIReadConfig)
82 :
83 : nsReadConfig::nsReadConfig()
84 : {
85 : /* member initializers and constructor code */
86 : }
87 :
88 : nsReadConfig::~nsReadConfig()
89 : {
90 : /* destructor code */
91 : }
92 :
93 : /* End of implementation class template. */
94 : #endif
95 :
96 :
97 : #endif /* __gen_nsIReadConfig_h__ */
|