|
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/21585/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/css/nsIDOMCSSValueList.idl
*/
#ifndef __gen_nsIDOMCSSValueList_h__
#define __gen_nsIDOMCSSValueList_h__
#ifndef __gen_nsIDOMCSSValue_h__
#include "nsIDOMCSSValue.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIDOMCSSValueList */
#define NS_IDOMCSSVALUELIST_IID_STR "8f09fa84-39b9-4dca-9b2f-db0eeb186286"
#define NS_IDOMCSSVALUELIST_IID \
{0x8f09fa84, 0x39b9, 0x4dca, \
{ 0x9b, 0x2f, 0xdb, 0x0e, 0xeb, 0x18, 0x62, 0x86 }}
class NS_NO_VTABLE nsIDOMCSSValueList : public nsIDOMCSSValue {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCSSVALUELIST_IID)
/* readonly attribute unsigned long length; */
NS_IMETHOD GetLength(uint32_t *aLength) = 0;
/* nsIDOMCSSValue item (in unsigned long index); */
NS_IMETHOD Item(uint32_t index, nsIDOMCSSValue * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCSSValueList, NS_IDOMCSSVALUELIST_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMCSSVALUELIST \
NS_IMETHOD GetLength(uint32_t *aLength); \
NS_IMETHOD Item(uint32_t index, nsIDOMCSSValue * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMCSSVALUELIST(_to) \
NS_IMETHOD GetLength(uint32_t *aLength) { return _to GetLength(aLength); } \
NS_IMETHOD Item(uint32_t index, nsIDOMCSSValue * *_retval) { return _to Item(index, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMCSSVALUELIST(_to) \
NS_IMETHOD GetLength(uint32_t *aLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLength(aLength); } \
NS_IMETHOD Item(uint32_t index, nsIDOMCSSValue * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Item(index, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMCSSValueList : public nsIDOMCSSValueList
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMCSSVALUELIST
nsDOMCSSValueList();
private:
~nsDOMCSSValueList();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMCSSValueList, nsIDOMCSSValueList)
nsDOMCSSValueList::nsDOMCSSValueList()
{
/* member initializers and constructor code */
}
nsDOMCSSValueList::~nsDOMCSSValueList()
{
/* destructor code */
}
/* readonly attribute unsigned long length; */
NS_IMETHODIMP nsDOMCSSValueList::GetLength(uint32_t *aLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMCSSValue item (in unsigned long index); */
NS_IMETHODIMP nsDOMCSSValueList::Item(uint32_t index, nsIDOMCSSValue * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMCSSValueList_h__ */