1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/content/base/public/nsIDOMSerializer.idl
3 : */
4 :
5 : #ifndef __gen_nsIDOMSerializer_h__
6 : #define __gen_nsIDOMSerializer_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 : class nsIOutputStream; /* forward declaration */
18 :
19 : class nsIDOMNode; /* forward declaration */
20 :
21 :
22 : /* starting interface: nsIDOMSerializer */
23 : #define NS_IDOMSERIALIZER_IID_STR "9fd4ba15-e67c-4c98-b52c-7715f62c9196"
24 :
25 : #define NS_IDOMSERIALIZER_IID \
26 : {0x9fd4ba15, 0xe67c, 0x4c98, \
27 : { 0xb5, 0x2c, 0x77, 0x15, 0xf6, 0x2c, 0x91, 0x96 }}
28 :
29 216 : class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMSerializer : public nsISupports {
30 : public:
31 :
32 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMSERIALIZER_IID)
33 :
34 : /* AString serializeToString (in nsIDOMNode root); */
35 : NS_SCRIPTABLE NS_IMETHOD SerializeToString(nsIDOMNode *root, nsAString & _retval NS_OUTPARAM) = 0;
36 :
37 : /* void serializeToStream (in nsIDOMNode root, in nsIOutputStream stream, in AUTF8String charset); */
38 : NS_SCRIPTABLE NS_IMETHOD SerializeToStream(nsIDOMNode *root, nsIOutputStream *stream, const nsACString & charset) = 0;
39 :
40 : };
41 :
42 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMSerializer, NS_IDOMSERIALIZER_IID)
43 :
44 : /* Use this macro when declaring classes that implement this interface. */
45 : #define NS_DECL_NSIDOMSERIALIZER \
46 : NS_SCRIPTABLE NS_IMETHOD SerializeToString(nsIDOMNode *root, nsAString & _retval NS_OUTPARAM); \
47 : NS_SCRIPTABLE NS_IMETHOD SerializeToStream(nsIDOMNode *root, nsIOutputStream *stream, const nsACString & charset);
48 :
49 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
50 : #define NS_FORWARD_NSIDOMSERIALIZER(_to) \
51 : NS_SCRIPTABLE NS_IMETHOD SerializeToString(nsIDOMNode *root, nsAString & _retval NS_OUTPARAM) { return _to SerializeToString(root, _retval); } \
52 : NS_SCRIPTABLE NS_IMETHOD SerializeToStream(nsIDOMNode *root, nsIOutputStream *stream, const nsACString & charset) { return _to SerializeToStream(root, stream, charset); }
53 :
54 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
55 : #define NS_FORWARD_SAFE_NSIDOMSERIALIZER(_to) \
56 : NS_SCRIPTABLE NS_IMETHOD SerializeToString(nsIDOMNode *root, nsAString & _retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->SerializeToString(root, _retval); } \
57 : NS_SCRIPTABLE NS_IMETHOD SerializeToStream(nsIDOMNode *root, nsIOutputStream *stream, const nsACString & charset) { return !_to ? NS_ERROR_NULL_POINTER : _to->SerializeToStream(root, stream, charset); }
58 :
59 : #if 0
60 : /* Use the code below as a template for the implementation class for this interface. */
61 :
62 : /* Header file */
63 : class nsDOMSerializer : public nsIDOMSerializer
64 : {
65 : public:
66 : NS_DECL_ISUPPORTS
67 : NS_DECL_NSIDOMSERIALIZER
68 :
69 : nsDOMSerializer();
70 :
71 : private:
72 : ~nsDOMSerializer();
73 :
74 : protected:
75 : /* additional members */
76 : };
77 :
78 : /* Implementation file */
79 : NS_IMPL_ISUPPORTS1(nsDOMSerializer, nsIDOMSerializer)
80 :
81 : nsDOMSerializer::nsDOMSerializer()
82 : {
83 : /* member initializers and constructor code */
84 : }
85 :
86 : nsDOMSerializer::~nsDOMSerializer()
87 : {
88 : /* destructor code */
89 : }
90 :
91 : /* AString serializeToString (in nsIDOMNode root); */
92 : NS_IMETHODIMP nsDOMSerializer::SerializeToString(nsIDOMNode *root, nsAString & _retval NS_OUTPARAM)
93 : {
94 : return NS_ERROR_NOT_IMPLEMENTED;
95 : }
96 :
97 : /* void serializeToStream (in nsIDOMNode root, in nsIOutputStream stream, in AUTF8String charset); */
98 : NS_IMETHODIMP nsDOMSerializer::SerializeToStream(nsIDOMNode *root, nsIOutputStream *stream, const nsACString & charset)
99 : {
100 : return NS_ERROR_NOT_IMPLEMENTED;
101 : }
102 :
103 : /* End of implementation class template. */
104 : #endif
105 :
106 : #define NS_XMLSERIALIZER_CID \
107 : { /* a6cf9124-15b3-11d2-932e-00805f8add32 */ \
108 : 0xa6cf9124, 0x15b3, 0x11d2, \
109 : {0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} }
110 : #define NS_XMLSERIALIZER_CONTRACTID \
111 : "@mozilla.org/xmlextras/xmlserializer;1"
112 :
113 : #endif /* __gen_nsIDOMSerializer_h__ */
|