|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21572/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/core/nsIDOMNodeList.idl
*/
#ifndef __gen_nsIDOMNodeList_h__
#define __gen_nsIDOMNodeList_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIContent; /* forward declaration */
/* starting interface: nsIDOMNodeList */
#define NS_IDOMNODELIST_IID_STR "496852ba-e48d-4fa5-982e-e0dc1b475bf1"
#define NS_IDOMNODELIST_IID \
{0x496852ba, 0xe48d, 0x4fa5, \
{ 0x98, 0x2e, 0xe0, 0xdc, 0x1b, 0x47, 0x5b, 0xf1 }}
class NS_NO_VTABLE nsIDOMNodeList : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMNODELIST_IID)
/* [forward(getNodeAt),getter] nsIDOMNode item (in unsigned long index); */
NS_IMETHOD Item(uint32_t index, nsIDOMNode * *_retval) = 0;
/* readonly attribute unsigned long length; */
NS_IMETHOD GetLength(uint32_t *aLength) = 0;
/* [noscript,nostdcall,notxpcom] nsIContent getNodeAt (in unsigned long index); */
virtual nsIContent * GetNodeAt(uint32_t index) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMNodeList, NS_IDOMNODELIST_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMNODELIST \
NS_IMETHOD Item(uint32_t index, nsIDOMNode * *_retval); \
NS_IMETHOD GetLength(uint32_t *aLength); \
virtual nsIContent * GetNodeAt(uint32_t index);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMNODELIST(_to) \
NS_IMETHOD Item(uint32_t index, nsIDOMNode * *_retval) { return _to Item(index, _retval); } \
NS_IMETHOD GetLength(uint32_t *aLength) { return _to GetLength(aLength); } \
virtual nsIContent * GetNodeAt(uint32_t index) { return _to GetNodeAt(index); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMNODELIST(_to) \
NS_IMETHOD Item(uint32_t index, nsIDOMNode * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Item(index, _retval); } \
NS_IMETHOD GetLength(uint32_t *aLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLength(aLength); } \
virtual nsIContent * GetNodeAt(uint32_t index) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNodeAt(index); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMNodeList : public nsIDOMNodeList
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMNODELIST
nsDOMNodeList();
private:
~nsDOMNodeList();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMNodeList, nsIDOMNodeList)
nsDOMNodeList::nsDOMNodeList()
{
/* member initializers and constructor code */
}
nsDOMNodeList::~nsDOMNodeList()
{
/* destructor code */
}
/* [forward(getNodeAt),getter] nsIDOMNode item (in unsigned long index); */
NS_IMETHODIMP nsDOMNodeList::Item(uint32_t index, nsIDOMNode * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long length; */
NS_IMETHODIMP nsDOMNodeList::GetLength(uint32_t *aLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript,nostdcall,notxpcom] nsIContent getNodeAt (in unsigned long index); */
nsIContent * nsDOMNodeList::GetNodeAt(uint32_t index)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMNodeList_h__ */