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

#ifndef __gen_msgIOverride_h__
#define __gen_msgIOverride_h__


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

#ifndef __gen_msgIDelegateList_h__
#include "msgIDelegateList.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:    msgIOverride */
#define MSGIOVERRIDE_IID_STR "68075269-8bbd-4a09-ac04-3241bf44f633"

#define MSGIOVERRIDE_IID \
  {0x68075269, 0x8bbd, 0x4a09, \
    { 0xac, 0x04, 0x32, 0x41, 0xbf, 0x44, 0xf6, 0x33 }}

class NS_NO_VTABLE msgIOverride : public nsISupports {
 public:

  NS_DECLARE_STATIC_IID_ACCESSOR(MSGIOVERRIDE_IID)

  /* attribute msgIDelegateList methodsToDelegate; */
  NS_IMETHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate) = 0;
  NS_IMETHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate) = 0;

  /* attribute nsISupports jsDelegate; */
  NS_IMETHOD GetJsDelegate(nsISupports * *aJsDelegate) = 0;
  NS_IMETHOD SetJsDelegate(nsISupports *aJsDelegate) = 0;

  /* readonly attribute nsISupports cppBase; */
  NS_IMETHOD GetCppBase(nsISupports * *aCppBase) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(msgIOverride, MSGIOVERRIDE_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MSGIOVERRIDE \
  NS_IMETHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate) override; \
  NS_IMETHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate) override; \
  NS_IMETHOD GetJsDelegate(nsISupports * *aJsDelegate) override; \
  NS_IMETHOD SetJsDelegate(nsISupports *aJsDelegate) override; \
  NS_IMETHOD GetCppBase(nsISupports * *aCppBase) override; 

/* Use this macro when declaring the members of this interface when the
   class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_MSGIOVERRIDE \
  NS_METHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate); \
  NS_METHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate); \
  NS_METHOD GetJsDelegate(nsISupports * *aJsDelegate); \
  NS_METHOD SetJsDelegate(nsISupports *aJsDelegate); \
  NS_METHOD GetCppBase(nsISupports * *aCppBase); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MSGIOVERRIDE(_to) \
  NS_IMETHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate) override { return _to GetMethodsToDelegate(aMethodsToDelegate); } \
  NS_IMETHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate) override { return _to SetMethodsToDelegate(aMethodsToDelegate); } \
  NS_IMETHOD GetJsDelegate(nsISupports * *aJsDelegate) override { return _to GetJsDelegate(aJsDelegate); } \
  NS_IMETHOD SetJsDelegate(nsISupports *aJsDelegate) override { return _to SetJsDelegate(aJsDelegate); } \
  NS_IMETHOD GetCppBase(nsISupports * *aCppBase) override { return _to GetCppBase(aCppBase); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_MSGIOVERRIDE(_to) \
  NS_IMETHOD GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMethodsToDelegate(aMethodsToDelegate); } \
  NS_IMETHOD SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMethodsToDelegate(aMethodsToDelegate); } \
  NS_IMETHOD GetJsDelegate(nsISupports * *aJsDelegate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetJsDelegate(aJsDelegate); } \
  NS_IMETHOD SetJsDelegate(nsISupports *aJsDelegate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetJsDelegate(aJsDelegate); } \
  NS_IMETHOD GetCppBase(nsISupports * *aCppBase) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCppBase(aCppBase); } 

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

/* Header file */
class _MYCLASS_ : public msgIOverride
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_MSGIOVERRIDE

  _MYCLASS_();

private:
  ~_MYCLASS_();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, msgIOverride)

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

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

/* attribute msgIDelegateList methodsToDelegate; */
NS_IMETHODIMP _MYCLASS_::GetMethodsToDelegate(msgIDelegateList * *aMethodsToDelegate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetMethodsToDelegate(msgIDelegateList *aMethodsToDelegate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* attribute nsISupports jsDelegate; */
NS_IMETHODIMP _MYCLASS_::GetJsDelegate(nsISupports * *aJsDelegate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP _MYCLASS_::SetJsDelegate(nsISupports *aJsDelegate)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute nsISupports cppBase; */
NS_IMETHODIMP _MYCLASS_::GetCppBase(nsISupports * *aCppBase)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_msgIOverride_h__ */
