1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/dom/interfaces/svg/nsIDOMSVGUnitTypes.idl
3 : */
4 :
5 : #ifndef __gen_nsIDOMSVGUnitTypes_h__
6 : #define __gen_nsIDOMSVGUnitTypes_h__
7 :
8 :
9 : #ifndef __gen_domstubs_h__
10 : #include "domstubs.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: nsIDOMSVGUnitTypes */
19 : #define NS_IDOMSVGUNITTYPES_IID_STR "154b572f-3d0b-49c0-8b5d-8864d05bd3d1"
20 :
21 : #define NS_IDOMSVGUNITTYPES_IID \
22 : {0x154b572f, 0x3d0b, 0x49c0, \
23 : { 0x8b, 0x5d, 0x88, 0x64, 0xd0, 0x5b, 0xd3, 0xd1 }}
24 :
25 0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMSVGUnitTypes : public nsISupports {
26 : public:
27 :
28 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMSVGUNITTYPES_IID)
29 :
30 : enum {
31 : SVG_UNIT_TYPE_UNKNOWN = 0U,
32 : SVG_UNIT_TYPE_USERSPACEONUSE = 1U,
33 : SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2U
34 : };
35 :
36 : };
37 :
38 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMSVGUnitTypes, NS_IDOMSVGUNITTYPES_IID)
39 :
40 : /* Use this macro when declaring classes that implement this interface. */
41 : #define NS_DECL_NSIDOMSVGUNITTYPES \
42 :
43 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
44 : #define NS_FORWARD_NSIDOMSVGUNITTYPES(_to) \
45 :
46 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
47 : #define NS_FORWARD_SAFE_NSIDOMSVGUNITTYPES(_to) \
48 :
49 : #if 0
50 : /* Use the code below as a template for the implementation class for this interface. */
51 :
52 : /* Header file */
53 : class nsDOMSVGUnitTypes : public nsIDOMSVGUnitTypes
54 : {
55 : public:
56 : NS_DECL_ISUPPORTS
57 : NS_DECL_NSIDOMSVGUNITTYPES
58 :
59 : nsDOMSVGUnitTypes();
60 :
61 : private:
62 : ~nsDOMSVGUnitTypes();
63 :
64 : protected:
65 : /* additional members */
66 : };
67 :
68 : /* Implementation file */
69 : NS_IMPL_ISUPPORTS1(nsDOMSVGUnitTypes, nsIDOMSVGUnitTypes)
70 :
71 : nsDOMSVGUnitTypes::nsDOMSVGUnitTypes()
72 : {
73 : /* member initializers and constructor code */
74 : }
75 :
76 : nsDOMSVGUnitTypes::~nsDOMSVGUnitTypes()
77 : {
78 : /* destructor code */
79 : }
80 :
81 : /* End of implementation class template. */
82 : #endif
83 :
84 :
85 : #endif /* __gen_nsIDOMSVGUnitTypes_h__ */
|