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

#ifndef __gen_nsIImportGeneric_h__
#define __gen_nsIImportGeneric_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 nsIDOMWindowInternal; /* forward declaration */

class nsISupportsWString; /* forward declaration */


/* starting interface:    nsIImportGeneric */
#define NS_IIMPORTGENERIC_IID_STR "9b5c20c0-2348-11d3-a206-00a0cc26da63"

#define NS_IIMPORTGENERIC_IID \
  {0x9b5c20c0, 0x2348, 0x11d3, \
    { 0xa2, 0x06, 0x00, 0xa0, 0xcc, 0x26, 0xda, 0x63 }}

class NS_NO_VTABLE nsIImportGeneric : public nsISupports {
 public: 

  NS_DEFINE_STATIC_IID_ACCESSOR(NS_IIMPORTGENERIC_IID)

  /* nsISupports GetData (in string dataId); */
  NS_IMETHOD GetData(const char *dataId, nsISupports **_retval) = 0;

  /* void SetData (in string dataId, in nsISupports pData); */
  NS_IMETHOD SetData(const char *dataId, nsISupports *pData) = 0;

  /* long GetStatus (in string statusKind); */
  NS_IMETHOD GetStatus(const char *statusKind, PRInt32 *_retval) = 0;

  /* boolean WantsProgress (); */
  NS_IMETHOD WantsProgress(PRBool *_retval) = 0;

  /* boolean BeginImport (in nsISupportsWString successLog, in nsISupportsWString errorLog, in boolean isAddrLocHome); */
  NS_IMETHOD BeginImport(nsISupportsWString *successLog, nsISupportsWString *errorLog, PRBool isAddrLocHome, PRBool *_retval) = 0;

  /* boolean ContinueImport (); */
  NS_IMETHOD ContinueImport(PRBool *_retval) = 0;

  /* long GetProgress (); */
  NS_IMETHOD GetProgress(PRInt32 *_retval) = 0;

  /* void CancelImport (); */
  NS_IMETHOD CancelImport(void) = 0;

};

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIIMPORTGENERIC \
  NS_IMETHOD GetData(const char *dataId, nsISupports **_retval); \
  NS_IMETHOD SetData(const char *dataId, nsISupports *pData); \
  NS_IMETHOD GetStatus(const char *statusKind, PRInt32 *_retval); \
  NS_IMETHOD WantsProgress(PRBool *_retval); \
  NS_IMETHOD BeginImport(nsISupportsWString *successLog, nsISupportsWString *errorLog, PRBool isAddrLocHome, PRBool *_retval); \
  NS_IMETHOD ContinueImport(PRBool *_retval); \
  NS_IMETHOD GetProgress(PRInt32 *_retval); \
  NS_IMETHOD CancelImport(void); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIIMPORTGENERIC(_to) \
  NS_IMETHOD GetData(const char *dataId, nsISupports **_retval) { return _to GetData(dataId, _retval); } \
  NS_IMETHOD SetData(const char *dataId, nsISupports *pData) { return _to SetData(dataId, pData); } \
  NS_IMETHOD GetStatus(const char *statusKind, PRInt32 *_retval) { return _to GetStatus(statusKind, _retval); } \
  NS_IMETHOD WantsProgress(PRBool *_retval) { return _to WantsProgress(_retval); } \
  NS_IMETHOD BeginImport(nsISupportsWString *successLog, nsISupportsWString *errorLog, PRBool isAddrLocHome, PRBool *_retval) { return _to BeginImport(successLog, errorLog, isAddrLocHome, _retval); } \
  NS_IMETHOD ContinueImport(PRBool *_retval) { return _to ContinueImport(_retval); } \
  NS_IMETHOD GetProgress(PRInt32 *_retval) { return _to GetProgress(_retval); } \
  NS_IMETHOD CancelImport(void) { return _to CancelImport(); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIIMPORTGENERIC(_to) \
  NS_IMETHOD GetData(const char *dataId, nsISupports **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetData(dataId, _retval); } \
  NS_IMETHOD SetData(const char *dataId, nsISupports *pData) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetData(dataId, pData); } \
  NS_IMETHOD GetStatus(const char *statusKind, PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStatus(statusKind, _retval); } \
  NS_IMETHOD WantsProgress(PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->WantsProgress(_retval); } \
  NS_IMETHOD BeginImport(nsISupportsWString *successLog, nsISupportsWString *errorLog, PRBool isAddrLocHome, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->BeginImport(successLog, errorLog, isAddrLocHome, _retval); } \
  NS_IMETHOD ContinueImport(PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ContinueImport(_retval); } \
  NS_IMETHOD GetProgress(PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProgress(_retval); } \
  NS_IMETHOD CancelImport(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->CancelImport(); } 

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

/* Header file */
class nsImportGeneric : public nsIImportGeneric
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIIMPORTGENERIC

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

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsImportGeneric, nsIImportGeneric)

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

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

/* nsISupports GetData (in string dataId); */
NS_IMETHODIMP nsImportGeneric::GetData(const char *dataId, nsISupports **_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void SetData (in string dataId, in nsISupports pData); */
NS_IMETHODIMP nsImportGeneric::SetData(const char *dataId, nsISupports *pData)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* long GetStatus (in string statusKind); */
NS_IMETHODIMP nsImportGeneric::GetStatus(const char *statusKind, PRInt32 *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean WantsProgress (); */
NS_IMETHODIMP nsImportGeneric::WantsProgress(PRBool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean BeginImport (in nsISupportsWString successLog, in nsISupportsWString errorLog, in boolean isAddrLocHome); */
NS_IMETHODIMP nsImportGeneric::BeginImport(nsISupportsWString *successLog, nsISupportsWString *errorLog, PRBool isAddrLocHome, PRBool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean ContinueImport (); */
NS_IMETHODIMP nsImportGeneric::ContinueImport(PRBool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* long GetProgress (); */
NS_IMETHODIMP nsImportGeneric::GetProgress(PRInt32 *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void CancelImport (); */
NS_IMETHODIMP nsImportGeneric::CancelImport()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIImportGeneric_h__ */
