Line data Source code
1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMCSSValueList.idl
3 : */
4 :
5 : #ifndef __gen_nsIDOMCSSValueList_h__
6 : #define __gen_nsIDOMCSSValueList_h__
7 :
8 :
9 : #ifndef __gen_domstubs_h__
10 : #include "domstubs.h"
11 : #endif
12 :
13 : #ifndef __gen_nsIDOMCSSValue_h__
14 : #include "nsIDOMCSSValue.h"
15 : #endif
16 :
17 : /* For IDL files that don't want to include root IDL files. */
18 : #ifndef NS_NO_VTABLE
19 : #define NS_NO_VTABLE
20 : #endif
21 :
22 : /* starting interface: nsIDOMCSSValueList */
23 : #define NS_IDOMCSSVALUELIST_IID_STR "92364ed1-e364-4175-bc52-c2fe9671cbc7"
24 :
25 : #define NS_IDOMCSSVALUELIST_IID \
26 : {0x92364ed1, 0xe364, 0x4175, \
27 : { 0xbc, 0x52, 0xc2, 0xfe, 0x96, 0x71, 0xcb, 0xc7 }}
28 :
29 0 : class NS_NO_VTABLE nsIDOMCSSValueList : public nsIDOMCSSValue {
30 : public:
31 :
32 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCSSVALUELIST_IID)
33 :
34 : };
35 :
36 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCSSValueList, NS_IDOMCSSVALUELIST_IID)
37 :
38 : /* Use this macro when declaring classes that implement this interface. */
39 : #define NS_DECL_NSIDOMCSSVALUELIST \
40 : /* no methods! */
41 :
42 : /* Use this macro when declaring the members of this interface when the
43 : class doesn't implement the interface. This is useful for forwarding. */
44 : #define NS_DECL_NON_VIRTUAL_NSIDOMCSSVALUELIST \
45 : /* no methods! */
46 :
47 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
48 : #define NS_FORWARD_NSIDOMCSSVALUELIST(_to) \
49 : /* no methods! */
50 :
51 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
52 : #define NS_FORWARD_SAFE_NSIDOMCSSVALUELIST(_to) \
53 : /* no methods! */
54 :
55 : #if 0
56 : /* Use the code below as a template for the implementation class for this interface. */
57 :
58 : /* Header file */
59 : class nsDOMCSSValueList : public nsIDOMCSSValueList
60 : {
61 : public:
62 : NS_DECL_ISUPPORTS
63 : NS_DECL_NSIDOMCSSVALUELIST
64 :
65 : nsDOMCSSValueList();
66 :
67 : private:
68 : ~nsDOMCSSValueList();
69 :
70 : protected:
71 : /* additional members */
72 : };
73 :
74 : /* Implementation file */
75 : NS_IMPL_ISUPPORTS(nsDOMCSSValueList, nsIDOMCSSValueList)
76 :
77 : nsDOMCSSValueList::nsDOMCSSValueList()
78 : {
79 : /* member initializers and constructor code */
80 : }
81 :
82 : nsDOMCSSValueList::~nsDOMCSSValueList()
83 : {
84 : /* destructor code */
85 : }
86 :
87 : /* End of implementation class template. */
88 : #endif
89 :
90 :
91 : #endif /* __gen_nsIDOMCSSValueList_h__ */
|