/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIDocShellHistory.idl
 */

#ifndef __gen_nsIDocShellHistory_h__
#define __gen_nsIDocShellHistory_h__


#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsISHEntry; /* forward declaration */

class nsIGlobalHistory; /* forward declaration */


/* starting interface:    nsIDocShellHistory */
#define NS_IDOCSHELLHISTORY_IID_STR "bd0a9ac0-4d3d-11d4-9bb1-00e09872a416"

#define NS_IDOCSHELLHISTORY_IID \
  {0xbd0a9ac0, 0x4d3d, 0x11d4, \
    { 0x9b, 0xb1, 0x00, 0xe0, 0x98, 0x72, 0xa4, 0x16 }}

class NS_NO_VTABLE nsIDocShellHistory : public nsISupports {
 public: 

  NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOCSHELLHISTORY_IID)

  /**
   * Get the SHEntry associated with a child docshell
   */
  /* nsISHEntry GetChildSHEntry (in long aChildOffset); */
  NS_IMETHOD GetChildSHEntry(PRInt32 aChildOffset, nsISHEntry **_retval) = 0;

  /**
   * Add a Child SHEntry for a frameset page
   */
  /* void AddChildSHEntry (in nsISHEntry aCloneReference, in nsISHEntry aHistoryEntry, in long aChildOffset); */
  NS_IMETHOD AddChildSHEntry(nsISHEntry *aCloneReference, nsISHEntry *aHistoryEntry, PRInt32 aChildOffset) = 0;

  /* attribute nsIGlobalHistory globalHistory; */
  NS_IMETHOD GetGlobalHistory(nsIGlobalHistory * *aGlobalHistory) = 0;
  NS_IMETHOD SetGlobalHistory(nsIGlobalHistory * aGlobalHistory) = 0;

};

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOCSHELLHISTORY \
  NS_IMETHOD GetChildSHEntry(PRInt32 aChildOffset, nsISHEntry **_retval); \
  NS_IMETHOD AddChildSHEntry(nsISHEntry *aCloneReference, nsISHEntry *aHistoryEntry, PRInt32 aChildOffset); \
  NS_IMETHOD GetGlobalHistory(nsIGlobalHistory * *aGlobalHistory); \
  NS_IMETHOD SetGlobalHistory(nsIGlobalHistory * aGlobalHistory); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOCSHELLHISTORY(_to) \
  NS_IMETHOD GetChildSHEntry(PRInt32 aChildOffset, nsISHEntry **_retval) { return _to GetChildSHEntry(aChildOffset, _retval); } \
  NS_IMETHOD AddChildSHEntry(nsISHEntry *aCloneReference, nsISHEntry *aHistoryEntry, PRInt32 aChildOffset) { return _to AddChildSHEntry(aCloneReference, aHistoryEntry, aChildOffset); } \
  NS_IMETHOD GetGlobalHistory(nsIGlobalHistory * *aGlobalHistory) { return _to GetGlobalHistory(aGlobalHistory); } \
  NS_IMETHOD SetGlobalHistory(nsIGlobalHistory * aGlobalHistory) { return _to SetGlobalHistory(aGlobalHistory); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOCSHELLHISTORY(_to) \
  NS_IMETHOD GetChildSHEntry(PRInt32 aChildOffset, nsISHEntry **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChildSHEntry(aChildOffset, _retval); } \
  NS_IMETHOD AddChildSHEntry(nsISHEntry *aCloneReference, nsISHEntry *aHistoryEntry, PRInt32 aChildOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddChildSHEntry(aCloneReference, aHistoryEntry, aChildOffset); } \
  NS_IMETHOD GetGlobalHistory(nsIGlobalHistory * *aGlobalHistory) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetGlobalHistory(aGlobalHistory); } \
  NS_IMETHOD SetGlobalHistory(nsIGlobalHistory * aGlobalHistory) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetGlobalHistory(aGlobalHistory); } 

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

/* Header file */
class nsDocShellHistory : public nsIDocShellHistory
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIDOCSHELLHISTORY

  nsDocShellHistory();
  virtual ~nsDocShellHistory();
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDocShellHistory, nsIDocShellHistory)

nsDocShellHistory::nsDocShellHistory()
{
  NS_INIT_ISUPPORTS();
  /* member initializers and constructor code */
}

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

/* nsISHEntry GetChildSHEntry (in long aChildOffset); */
NS_IMETHODIMP nsDocShellHistory::GetChildSHEntry(PRInt32 aChildOffset, nsISHEntry **_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void AddChildSHEntry (in nsISHEntry aCloneReference, in nsISHEntry aHistoryEntry, in long aChildOffset); */
NS_IMETHODIMP nsDocShellHistory::AddChildSHEntry(nsISHEntry *aCloneReference, nsISHEntry *aHistoryEntry, PRInt32 aChildOffset)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute nsIGlobalHistory globalHistory; */
NS_IMETHODIMP nsDocShellHistory::GetGlobalHistory(nsIGlobalHistory * *aGlobalHistory)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDocShellHistory::SetGlobalHistory(nsIGlobalHistory * aGlobalHistory)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIDocShellHistory_h__ */
