|
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/21571/root/usr/lib/xulrunner-devel-17.0.10/include/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/docshell/shistory/public/nsISHContainer.idl
*/
#ifndef __gen_nsISHContainer_h__
#define __gen_nsISHContainer_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsIEnumerator_h__
#include "nsIEnumerator.h"
#endif
#ifndef __gen_nsISHEntry_h__
#include "nsISHEntry.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: nsISHContainer */
#define NS_ISHCONTAINER_IID_STR "65281ba2-988a-11d3-bdc7-0050040a9b44"
#define NS_ISHCONTAINER_IID \
{0x65281ba2, 0x988a, 0x11d3, \
{ 0xbd, 0xc7, 0x00, 0x50, 0x04, 0x0a, 0x9b, 0x44 }}
class NS_NO_VTABLE nsISHContainer : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISHCONTAINER_IID)
/* readonly attribute long childCount; */
NS_IMETHOD GetChildCount(int32_t *aChildCount) = 0;
/* void AddChild (in nsISHEntry child, in long offset); */
NS_IMETHOD AddChild(nsISHEntry *child, int32_t offset) = 0;
/* void RemoveChild (in nsISHEntry child); */
NS_IMETHOD RemoveChild(nsISHEntry *child) = 0;
/* nsISHEntry GetChildAt (in long index); */
NS_IMETHOD GetChildAt(int32_t index, nsISHEntry * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsISHContainer, NS_ISHCONTAINER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISHCONTAINER \
NS_IMETHOD GetChildCount(int32_t *aChildCount); \
NS_IMETHOD AddChild(nsISHEntry *child, int32_t offset); \
NS_IMETHOD RemoveChild(nsISHEntry *child); \
NS_IMETHOD GetChildAt(int32_t index, nsISHEntry * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISHCONTAINER(_to) \
NS_IMETHOD GetChildCount(int32_t *aChildCount) { return _to GetChildCount(aChildCount); } \
NS_IMETHOD AddChild(nsISHEntry *child, int32_t offset) { return _to AddChild(child, offset); } \
NS_IMETHOD RemoveChild(nsISHEntry *child) { return _to RemoveChild(child); } \
NS_IMETHOD GetChildAt(int32_t index, nsISHEntry * *_retval) { return _to GetChildAt(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_NSISHCONTAINER(_to) \
NS_IMETHOD GetChildCount(int32_t *aChildCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildCount(aChildCount); } \
NS_IMETHOD AddChild(nsISHEntry *child, int32_t offset) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddChild(child, offset); } \
NS_IMETHOD RemoveChild(nsISHEntry *child) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveChild(child); } \
NS_IMETHOD GetChildAt(int32_t index, nsISHEntry * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildAt(index, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsSHContainer : public nsISHContainer
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISHCONTAINER
nsSHContainer();
private:
~nsSHContainer();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsSHContainer, nsISHContainer)
nsSHContainer::nsSHContainer()
{
/* member initializers and constructor code */
}
nsSHContainer::~nsSHContainer()
{
/* destructor code */
}
/* readonly attribute long childCount; */
NS_IMETHODIMP nsSHContainer::GetChildCount(int32_t *aChildCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void AddChild (in nsISHEntry child, in long offset); */
NS_IMETHODIMP nsSHContainer::AddChild(nsISHEntry *child, int32_t offset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void RemoveChild (in nsISHEntry child); */
NS_IMETHODIMP nsSHContainer::RemoveChild(nsISHEntry *child)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsISHEntry GetChildAt (in long index); */
NS_IMETHODIMP nsSHContainer::GetChildAt(int32_t index, nsISHEntry * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsISHContainer_h__ */