Line data Source code
1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/txIXPathObject.idl
3 : */
4 :
5 : #ifndef __gen_txIXPathObject_h__
6 : #define __gen_txIXPathObject_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 txAExprResult;
18 :
19 : /* starting interface: txIXPathObject */
20 : #define TXIXPATHOBJECT_IID_STR "67706346-dece-4c9b-9fc2-57cf19071014"
21 :
22 : #define TXIXPATHOBJECT_IID \
23 : {0x67706346, 0xdece, 0x4c9b, \
24 : { 0x9f, 0xc2, 0x57, 0xcf, 0x19, 0x07, 0x10, 0x14 }}
25 :
26 0 : class NS_NO_VTABLE txIXPathObject : public nsISupports {
27 : public:
28 :
29 : NS_DECLARE_STATIC_IID_ACCESSOR(TXIXPATHOBJECT_IID)
30 :
31 : /* [noscript,notxpcom] txAExprResultPtr getResult (); */
32 : NS_IMETHOD_(txAExprResult *) GetResult(void) = 0;
33 :
34 : };
35 :
36 : NS_DEFINE_STATIC_IID_ACCESSOR(txIXPathObject, TXIXPATHOBJECT_IID)
37 :
38 : /* Use this macro when declaring classes that implement this interface. */
39 : #define NS_DECL_TXIXPATHOBJECT \
40 : NS_IMETHOD_(txAExprResult *) GetResult(void) override;
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_TXIXPATHOBJECT \
45 : nsresult_(txAExprResult *) GetResult(void);
46 :
47 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
48 : #define NS_FORWARD_TXIXPATHOBJECT(_to) \
49 : NS_IMETHOD_(txAExprResult *) GetResult(void) override { return _to GetResult(); }
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_TXIXPATHOBJECT(_to) \
53 : NS_IMETHOD_(txAExprResult *) GetResult(void) override;
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 txXPathObject : public txIXPathObject
60 : {
61 : public:
62 : NS_DECL_ISUPPORTS
63 : NS_DECL_TXIXPATHOBJECT
64 :
65 : txXPathObject();
66 :
67 : private:
68 : ~txXPathObject();
69 :
70 : protected:
71 : /* additional members */
72 : };
73 :
74 : /* Implementation file */
75 : NS_IMPL_ISUPPORTS(txXPathObject, txIXPathObject)
76 :
77 : txXPathObject::txXPathObject()
78 : {
79 : /* member initializers and constructor code */
80 : }
81 :
82 : txXPathObject::~txXPathObject()
83 : {
84 : /* destructor code */
85 : }
86 :
87 : /* [noscript,notxpcom] txAExprResultPtr getResult (); */
88 : NS_IMETHODIMP_(txAExprResult *) txXPathObject::GetResult()
89 : {
90 : return NS_ERROR_NOT_IMPLEMENTED;
91 : }
92 :
93 : /* End of implementation class template. */
94 : #endif
95 :
96 :
97 : #endif /* __gen_txIXPathObject_h__ */
|