1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/content/xslt/public/txIXPathObject.idl
3 : */
4 :
5 : #ifndef __gen_txIXPathObject_h__
6 : #define __gen_txIXPathObject_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 : 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 NS_SCRIPTABLE 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);
41 :
42 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
43 : #define NS_FORWARD_TXIXPATHOBJECT(_to) \
44 : NS_IMETHOD_(txAExprResult *) GetResult(void) { return _to GetResult(); }
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_TXIXPATHOBJECT(_to) \
48 : NS_IMETHOD_(txAExprResult *) GetResult(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetResult(); }
49 :
50 : #if 0
51 : /* Use the code below as a template for the implementation class for this interface. */
52 :
53 : /* Header file */
54 : class txXPathObject : public txIXPathObject
55 : {
56 : public:
57 : NS_DECL_ISUPPORTS
58 : NS_DECL_TXIXPATHOBJECT
59 :
60 : txXPathObject();
61 :
62 : private:
63 : ~txXPathObject();
64 :
65 : protected:
66 : /* additional members */
67 : };
68 :
69 : /* Implementation file */
70 : NS_IMPL_ISUPPORTS1(txXPathObject, txIXPathObject)
71 :
72 : txXPathObject::txXPathObject()
73 : {
74 : /* member initializers and constructor code */
75 : }
76 :
77 : txXPathObject::~txXPathObject()
78 : {
79 : /* destructor code */
80 : }
81 :
82 : /* [noscript,notxpcom] txAExprResultPtr getResult (); */
83 : NS_IMETHODIMP_(txAExprResult *) txXPathObject::GetResult()
84 : {
85 : return NS_ERROR_NOT_IMPLEMENTED;
86 : }
87 :
88 : /* End of implementation class template. */
89 : #endif
90 :
91 :
92 : #endif /* __gen_txIXPathObject_h__ */
|