KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
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/task/21573/root/proc/21572/root/usr/include/xulrunner-17.0.10/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/21573/task/21573/root/proc/21572/root/usr/include/xulrunner-17.0.10/nsIDOMNodeIterator.h
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/traversal/nsIDOMNodeIterator.idl
 */

#ifndef __gen_nsIDOMNodeIterator_h__
#define __gen_nsIDOMNodeIterator_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 nsIDOMNodeIterator; /* forward declaration */

class nsIDOMNodeFilter; /* forward declaration */


/* starting interface:    nsIDOMNodeIterator */
#define NS_IDOMNODEITERATOR_IID_STR "5af83f50-c8d5-4824-be29-1aa9d640bacb"

#define NS_IDOMNODEITERATOR_IID \
  {0x5af83f50, 0xc8d5, 0x4824, \
    { 0xbe, 0x29, 0x1a, 0xa9, 0xd6, 0x40, 0xba, 0xcb }}

class NS_NO_VTABLE nsIDOMNodeIterator : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMNODEITERATOR_IID)

  /* readonly attribute nsIDOMNode root; */
  NS_IMETHOD GetRoot(nsIDOMNode * *aRoot) = 0;

  /* readonly attribute unsigned long whatToShow; */
  NS_IMETHOD GetWhatToShow(uint32_t *aWhatToShow) = 0;

  /* readonly attribute nsIDOMNodeFilter filter; */
  NS_IMETHOD GetFilter(nsIDOMNodeFilter * *aFilter) = 0;

  /* readonly attribute boolean expandEntityReferences; */
  NS_IMETHOD GetExpandEntityReferences(bool *aExpandEntityReferences) = 0;

  /* nsIDOMNode nextNode () raises (DOMException); */
  NS_IMETHOD NextNode(nsIDOMNode * *_retval) = 0;

  /* nsIDOMNode previousNode () raises (DOMException); */
  NS_IMETHOD PreviousNode(nsIDOMNode * *_retval) = 0;

  /* void detach (); */
  NS_IMETHOD Detach(void) = 0;

  /* readonly attribute nsIDOMNode referenceNode; */
  NS_IMETHOD GetReferenceNode(nsIDOMNode * *aReferenceNode) = 0;

  /* readonly attribute boolean pointerBeforeReferenceNode; */
  NS_IMETHOD GetPointerBeforeReferenceNode(bool *aPointerBeforeReferenceNode) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMNodeIterator, NS_IDOMNODEITERATOR_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMNODEITERATOR \
  NS_IMETHOD GetRoot(nsIDOMNode * *aRoot); \
  NS_IMETHOD GetWhatToShow(uint32_t *aWhatToShow); \
  NS_IMETHOD GetFilter(nsIDOMNodeFilter * *aFilter); \
  NS_IMETHOD GetExpandEntityReferences(bool *aExpandEntityReferences); \
  NS_IMETHOD NextNode(nsIDOMNode * *_retval); \
  NS_IMETHOD PreviousNode(nsIDOMNode * *_retval); \
  NS_IMETHOD Detach(void); \
  NS_IMETHOD GetReferenceNode(nsIDOMNode * *aReferenceNode); \
  NS_IMETHOD GetPointerBeforeReferenceNode(bool *aPointerBeforeReferenceNode); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMNODEITERATOR(_to) \
  NS_IMETHOD GetRoot(nsIDOMNode * *aRoot) { return _to GetRoot(aRoot); } \
  NS_IMETHOD GetWhatToShow(uint32_t *aWhatToShow) { return _to GetWhatToShow(aWhatToShow); } \
  NS_IMETHOD GetFilter(nsIDOMNodeFilter * *aFilter) { return _to GetFilter(aFilter); } \
  NS_IMETHOD GetExpandEntityReferences(bool *aExpandEntityReferences) { return _to GetExpandEntityReferences(aExpandEntityReferences); } \
  NS_IMETHOD NextNode(nsIDOMNode * *_retval) { return _to NextNode(_retval); } \
  NS_IMETHOD PreviousNode(nsIDOMNode * *_retval) { return _to PreviousNode(_retval); } \
  NS_IMETHOD Detach(void) { return _to Detach(); } \
  NS_IMETHOD GetReferenceNode(nsIDOMNode * *aReferenceNode) { return _to GetReferenceNode(aReferenceNode); } \
  NS_IMETHOD GetPointerBeforeReferenceNode(bool *aPointerBeforeReferenceNode) { return _to GetPointerBeforeReferenceNode(aPointerBeforeReferenceNode); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMNODEITERATOR(_to) \
  NS_IMETHOD GetRoot(nsIDOMNode * *aRoot) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRoot(aRoot); } \
  NS_IMETHOD GetWhatToShow(uint32_t *aWhatToShow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWhatToShow(aWhatToShow); } \
  NS_IMETHOD GetFilter(nsIDOMNodeFilter * *aFilter) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFilter(aFilter); } \
  NS_IMETHOD GetExpandEntityReferences(bool *aExpandEntityReferences) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetExpandEntityReferences(aExpandEntityReferences); } \
  NS_IMETHOD NextNode(nsIDOMNode * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->NextNode(_retval); } \
  NS_IMETHOD PreviousNode(nsIDOMNode * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->PreviousNode(_retval); } \
  NS_IMETHOD Detach(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Detach(); } \
  NS_IMETHOD GetReferenceNode(nsIDOMNode * *aReferenceNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetReferenceNode(aReferenceNode); } \
  NS_IMETHOD GetPointerBeforeReferenceNode(bool *aPointerBeforeReferenceNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPointerBeforeReferenceNode(aPointerBeforeReferenceNode); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class nsDOMNodeIterator : public nsIDOMNodeIterator
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIDOMNODEITERATOR

  nsDOMNodeIterator();

private:
  ~nsDOMNodeIterator();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMNodeIterator, nsIDOMNodeIterator)

nsDOMNodeIterator::nsDOMNodeIterator()
{
  /* member initializers and constructor code */
}

nsDOMNodeIterator::~nsDOMNodeIterator()
{
  /* destructor code */
}

/* readonly attribute nsIDOMNode root; */
NS_IMETHODIMP nsDOMNodeIterator::GetRoot(nsIDOMNode * *aRoot)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute unsigned long whatToShow; */
NS_IMETHODIMP nsDOMNodeIterator::GetWhatToShow(uint32_t *aWhatToShow)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute nsIDOMNodeFilter filter; */
NS_IMETHODIMP nsDOMNodeIterator::GetFilter(nsIDOMNodeFilter * *aFilter)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute boolean expandEntityReferences; */
NS_IMETHODIMP nsDOMNodeIterator::GetExpandEntityReferences(bool *aExpandEntityReferences)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIDOMNode nextNode () raises (DOMException); */
NS_IMETHODIMP nsDOMNodeIterator::NextNode(nsIDOMNode * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* nsIDOMNode previousNode () raises (DOMException); */
NS_IMETHODIMP nsDOMNodeIterator::PreviousNode(nsIDOMNode * *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void detach (); */
NS_IMETHODIMP nsDOMNodeIterator::Detach()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute nsIDOMNode referenceNode; */
NS_IMETHODIMP nsDOMNodeIterator::GetReferenceNode(nsIDOMNode * *aReferenceNode)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute boolean pointerBeforeReferenceNode; */
NS_IMETHODIMP nsDOMNodeIterator::GetPointerBeforeReferenceNode(bool *aPointerBeforeReferenceNode)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_nsIDOMNodeIterator_h__ */

Anon7 - 2021