|
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/21573/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/svg/nsIDOMSVGPathSegList.idl
*/
#ifndef __gen_nsIDOMSVGPathSegList_h__
#define __gen_nsIDOMSVGPathSegList_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 nsIDOMSVGPathSeg; /* forward declaration */
/* starting interface: nsIDOMSVGPathSegList */
#define NS_IDOMSVGPATHSEGLIST_IID_STR "1e4efb5c-7b0f-4338-a92e-6ca5402b303c"
#define NS_IDOMSVGPATHSEGLIST_IID \
{0x1e4efb5c, 0x7b0f, 0x4338, \
{ 0xa9, 0x2e, 0x6c, 0xa5, 0x40, 0x2b, 0x30, 0x3c }}
class NS_NO_VTABLE nsIDOMSVGPathSegList : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMSVGPATHSEGLIST_IID)
/* readonly attribute unsigned long numberOfItems; */
NS_IMETHOD GetNumberOfItems(uint32_t *aNumberOfItems) = 0;
/* readonly attribute unsigned long length; */
NS_IMETHOD GetLength(uint32_t *aLength) = 0;
/* void clear (); */
NS_IMETHOD Clear(void) = 0;
/* nsIDOMSVGPathSeg initialize (in nsIDOMSVGPathSeg newItem); */
NS_IMETHOD Initialize(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval) = 0;
/* nsIDOMSVGPathSeg getItem (in unsigned long index); */
NS_IMETHOD GetItem(uint32_t index, nsIDOMSVGPathSeg * *_retval) = 0;
/* [getter,noscript,nostdcall,notxpcom] nsIDOMSVGPathSeg getItemAt (in unsigned long index); */
virtual nsIDOMSVGPathSeg * GetItemAt(uint32_t index) = 0;
/* nsIDOMSVGPathSeg insertItemBefore (in nsIDOMSVGPathSeg newItem, in unsigned long index); */
NS_IMETHOD InsertItemBefore(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval) = 0;
/* nsIDOMSVGPathSeg replaceItem (in nsIDOMSVGPathSeg newItem, in unsigned long index); */
NS_IMETHOD ReplaceItem(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval) = 0;
/* nsIDOMSVGPathSeg removeItem (in unsigned long index); */
NS_IMETHOD RemoveItem(uint32_t index, nsIDOMSVGPathSeg * *_retval) = 0;
/* nsIDOMSVGPathSeg appendItem (in nsIDOMSVGPathSeg newItem); */
NS_IMETHOD AppendItem(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMSVGPathSegList, NS_IDOMSVGPATHSEGLIST_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMSVGPATHSEGLIST \
NS_IMETHOD GetNumberOfItems(uint32_t *aNumberOfItems); \
NS_IMETHOD GetLength(uint32_t *aLength); \
NS_IMETHOD Clear(void); \
NS_IMETHOD Initialize(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval); \
NS_IMETHOD GetItem(uint32_t index, nsIDOMSVGPathSeg * *_retval); \
virtual nsIDOMSVGPathSeg * GetItemAt(uint32_t index); \
NS_IMETHOD InsertItemBefore(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval); \
NS_IMETHOD ReplaceItem(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval); \
NS_IMETHOD RemoveItem(uint32_t index, nsIDOMSVGPathSeg * *_retval); \
NS_IMETHOD AppendItem(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMSVGPATHSEGLIST(_to) \
NS_IMETHOD GetNumberOfItems(uint32_t *aNumberOfItems) { return _to GetNumberOfItems(aNumberOfItems); } \
NS_IMETHOD GetLength(uint32_t *aLength) { return _to GetLength(aLength); } \
NS_IMETHOD Clear(void) { return _to Clear(); } \
NS_IMETHOD Initialize(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval) { return _to Initialize(newItem, _retval); } \
NS_IMETHOD GetItem(uint32_t index, nsIDOMSVGPathSeg * *_retval) { return _to GetItem(index, _retval); } \
virtual nsIDOMSVGPathSeg * GetItemAt(uint32_t index) { return _to GetItemAt(index); } \
NS_IMETHOD InsertItemBefore(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval) { return _to InsertItemBefore(newItem, index, _retval); } \
NS_IMETHOD ReplaceItem(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval) { return _to ReplaceItem(newItem, index, _retval); } \
NS_IMETHOD RemoveItem(uint32_t index, nsIDOMSVGPathSeg * *_retval) { return _to RemoveItem(index, _retval); } \
NS_IMETHOD AppendItem(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval) { return _to AppendItem(newItem, _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_NSIDOMSVGPATHSEGLIST(_to) \
NS_IMETHOD GetNumberOfItems(uint32_t *aNumberOfItems) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNumberOfItems(aNumberOfItems); } \
NS_IMETHOD GetLength(uint32_t *aLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLength(aLength); } \
NS_IMETHOD Clear(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Clear(); } \
NS_IMETHOD Initialize(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Initialize(newItem, _retval); } \
NS_IMETHOD GetItem(uint32_t index, nsIDOMSVGPathSeg * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetItem(index, _retval); } \
virtual nsIDOMSVGPathSeg * GetItemAt(uint32_t index) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetItemAt(index); } \
NS_IMETHOD InsertItemBefore(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->InsertItemBefore(newItem, index, _retval); } \
NS_IMETHOD ReplaceItem(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ReplaceItem(newItem, index, _retval); } \
NS_IMETHOD RemoveItem(uint32_t index, nsIDOMSVGPathSeg * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveItem(index, _retval); } \
NS_IMETHOD AppendItem(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->AppendItem(newItem, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMSVGPathSegList : public nsIDOMSVGPathSegList
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMSVGPATHSEGLIST
nsDOMSVGPathSegList();
private:
~nsDOMSVGPathSegList();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMSVGPathSegList, nsIDOMSVGPathSegList)
nsDOMSVGPathSegList::nsDOMSVGPathSegList()
{
/* member initializers and constructor code */
}
nsDOMSVGPathSegList::~nsDOMSVGPathSegList()
{
/* destructor code */
}
/* readonly attribute unsigned long numberOfItems; */
NS_IMETHODIMP nsDOMSVGPathSegList::GetNumberOfItems(uint32_t *aNumberOfItems)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long length; */
NS_IMETHODIMP nsDOMSVGPathSegList::GetLength(uint32_t *aLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void clear (); */
NS_IMETHODIMP nsDOMSVGPathSegList::Clear()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPathSeg initialize (in nsIDOMSVGPathSeg newItem); */
NS_IMETHODIMP nsDOMSVGPathSegList::Initialize(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPathSeg getItem (in unsigned long index); */
NS_IMETHODIMP nsDOMSVGPathSegList::GetItem(uint32_t index, nsIDOMSVGPathSeg * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [getter,noscript,nostdcall,notxpcom] nsIDOMSVGPathSeg getItemAt (in unsigned long index); */
nsIDOMSVGPathSeg * nsDOMSVGPathSegList::GetItemAt(uint32_t index)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPathSeg insertItemBefore (in nsIDOMSVGPathSeg newItem, in unsigned long index); */
NS_IMETHODIMP nsDOMSVGPathSegList::InsertItemBefore(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPathSeg replaceItem (in nsIDOMSVGPathSeg newItem, in unsigned long index); */
NS_IMETHODIMP nsDOMSVGPathSegList::ReplaceItem(nsIDOMSVGPathSeg *newItem, uint32_t index, nsIDOMSVGPathSeg * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPathSeg removeItem (in unsigned long index); */
NS_IMETHODIMP nsDOMSVGPathSegList::RemoveItem(uint32_t index, nsIDOMSVGPathSeg * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMSVGPathSeg appendItem (in nsIDOMSVGPathSeg newItem); */
NS_IMETHODIMP nsDOMSVGPathSegList::AppendItem(nsIDOMSVGPathSeg *newItem, nsIDOMSVGPathSeg * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMSVGPathSegList_h__ */