1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/xpcom/io/nsIIOUtil.idl
3 : */
4 :
5 : #ifndef __gen_nsIIOUtil_h__
6 : #define __gen_nsIIOUtil_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 nsIInputStream; /* forward declaration */
18 :
19 : class nsIOutputStream; /* forward declaration */
20 :
21 :
22 : /* starting interface: nsIIOUtil */
23 : #define NS_IIOUTIL_IID_STR "e8152f7f-4209-4c63-ad23-c3d2aa0c5a49"
24 :
25 : #define NS_IIOUTIL_IID \
26 : {0xe8152f7f, 0x4209, 0x4c63, \
27 : { 0xad, 0x23, 0xc3, 0xd2, 0xaa, 0x0c, 0x5a, 0x49 }}
28 :
29 25 : class NS_NO_VTABLE NS_SCRIPTABLE nsIIOUtil : public nsISupports {
30 : public:
31 :
32 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IIOUTIL_IID)
33 :
34 : /* boolean inputStreamIsBuffered (in nsIInputStream aStream); */
35 : NS_SCRIPTABLE NS_IMETHOD InputStreamIsBuffered(nsIInputStream *aStream, bool *_retval NS_OUTPARAM) = 0;
36 :
37 : /* boolean outputStreamIsBuffered (in nsIOutputStream aStream); */
38 : NS_SCRIPTABLE NS_IMETHOD OutputStreamIsBuffered(nsIOutputStream *aStream, bool *_retval NS_OUTPARAM) = 0;
39 :
40 : };
41 :
42 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIIOUtil, NS_IIOUTIL_IID)
43 :
44 : /* Use this macro when declaring classes that implement this interface. */
45 : #define NS_DECL_NSIIOUTIL \
46 : NS_SCRIPTABLE NS_IMETHOD InputStreamIsBuffered(nsIInputStream *aStream, bool *_retval NS_OUTPARAM); \
47 : NS_SCRIPTABLE NS_IMETHOD OutputStreamIsBuffered(nsIOutputStream *aStream, bool *_retval NS_OUTPARAM);
48 :
49 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
50 : #define NS_FORWARD_NSIIOUTIL(_to) \
51 : NS_SCRIPTABLE NS_IMETHOD InputStreamIsBuffered(nsIInputStream *aStream, bool *_retval NS_OUTPARAM) { return _to InputStreamIsBuffered(aStream, _retval); } \
52 : NS_SCRIPTABLE NS_IMETHOD OutputStreamIsBuffered(nsIOutputStream *aStream, bool *_retval NS_OUTPARAM) { return _to OutputStreamIsBuffered(aStream, _retval); }
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_NSIIOUTIL(_to) \
56 : NS_SCRIPTABLE NS_IMETHOD InputStreamIsBuffered(nsIInputStream *aStream, bool *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->InputStreamIsBuffered(aStream, _retval); } \
57 : NS_SCRIPTABLE NS_IMETHOD OutputStreamIsBuffered(nsIOutputStream *aStream, bool *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->OutputStreamIsBuffered(aStream, _retval); }
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 nsIOUtil : public nsIIOUtil
64 : {
65 : public:
66 : NS_DECL_ISUPPORTS
67 : NS_DECL_NSIIOUTIL
68 :
69 : nsIOUtil();
70 :
71 : private:
72 : ~nsIOUtil();
73 :
74 : protected:
75 : /* additional members */
76 : };
77 :
78 : /* Implementation file */
79 : NS_IMPL_ISUPPORTS1(nsIOUtil, nsIIOUtil)
80 :
81 : nsIOUtil::nsIOUtil()
82 : {
83 : /* member initializers and constructor code */
84 : }
85 :
86 : nsIOUtil::~nsIOUtil()
87 : {
88 : /* destructor code */
89 : }
90 :
91 : /* boolean inputStreamIsBuffered (in nsIInputStream aStream); */
92 : NS_IMETHODIMP nsIOUtil::InputStreamIsBuffered(nsIInputStream *aStream, bool *_retval NS_OUTPARAM)
93 : {
94 : return NS_ERROR_NOT_IMPLEMENTED;
95 : }
96 :
97 : /* boolean outputStreamIsBuffered (in nsIOutputStream aStream); */
98 : NS_IMETHODIMP nsIOUtil::OutputStreamIsBuffered(nsIOutputStream *aStream, bool *_retval NS_OUTPARAM)
99 : {
100 : return NS_ERROR_NOT_IMPLEMENTED;
101 : }
102 :
103 : /* End of implementation class template. */
104 : #endif
105 :
106 :
107 : #endif /* __gen_nsIIOUtil_h__ */
|