Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIMsgSMIMECompFields.idl
*/
#ifndef __gen_nsIMsgSMIMECompFields_h__
#define __gen_nsIMsgSMIMECompFields_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
/* starting interface: nsIMsgSMIMECompFields */
#define NS_IMSGSMIMECOMPFIELDS_IID_STR "338e91f9-5970-4f81-b771-0822a32b1161"
#define NS_IMSGSMIMECOMPFIELDS_IID \
{0x338e91f9, 0x5970, 0x4f81, \
{ 0xb7, 0x71, 0x08, 0x22, 0xa3, 0x2b, 0x11, 0x61 }}
class NS_NO_VTABLE nsIMsgSMIMECompFields : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMSGSMIMECOMPFIELDS_IID)
/* attribute boolean signMessage; */
NS_IMETHOD GetSignMessage(bool *aSignMessage) = 0;
NS_IMETHOD SetSignMessage(bool aSignMessage) = 0;
/* attribute boolean requireEncryptMessage; */
NS_IMETHOD GetRequireEncryptMessage(bool *aRequireEncryptMessage) = 0;
NS_IMETHOD SetRequireEncryptMessage(bool aRequireEncryptMessage) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMsgSMIMECompFields, NS_IMSGSMIMECOMPFIELDS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMSGSMIMECOMPFIELDS \
NS_IMETHOD GetSignMessage(bool *aSignMessage) override; \
NS_IMETHOD SetSignMessage(bool aSignMessage) override; \
NS_IMETHOD GetRequireEncryptMessage(bool *aRequireEncryptMessage) override; \
NS_IMETHOD SetRequireEncryptMessage(bool aRequireEncryptMessage) 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_NSIMSGSMIMECOMPFIELDS \
NS_METHOD GetSignMessage(bool *aSignMessage); \
NS_METHOD SetSignMessage(bool aSignMessage); \
NS_METHOD GetRequireEncryptMessage(bool *aRequireEncryptMessage); \
NS_METHOD SetRequireEncryptMessage(bool aRequireEncryptMessage);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMSGSMIMECOMPFIELDS(_to) \
NS_IMETHOD GetSignMessage(bool *aSignMessage) override { return _to GetSignMessage(aSignMessage); } \
NS_IMETHOD SetSignMessage(bool aSignMessage) override { return _to SetSignMessage(aSignMessage); } \
NS_IMETHOD GetRequireEncryptMessage(bool *aRequireEncryptMessage) override { return _to GetRequireEncryptMessage(aRequireEncryptMessage); } \
NS_IMETHOD SetRequireEncryptMessage(bool aRequireEncryptMessage) override { return _to SetRequireEncryptMessage(aRequireEncryptMessage); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMSGSMIMECOMPFIELDS(_to) \
NS_IMETHOD GetSignMessage(bool *aSignMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSignMessage(aSignMessage); } \
NS_IMETHOD SetSignMessage(bool aSignMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSignMessage(aSignMessage); } \
NS_IMETHOD GetRequireEncryptMessage(bool *aRequireEncryptMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRequireEncryptMessage(aRequireEncryptMessage); } \
NS_IMETHOD SetRequireEncryptMessage(bool aRequireEncryptMessage) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRequireEncryptMessage(aRequireEncryptMessage); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMsgSMIMECompFields : public nsIMsgSMIMECompFields
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMSGSMIMECOMPFIELDS
nsMsgSMIMECompFields();
private:
~nsMsgSMIMECompFields();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsMsgSMIMECompFields, nsIMsgSMIMECompFields)
nsMsgSMIMECompFields::nsMsgSMIMECompFields()
{
/* member initializers and constructor code */
}
nsMsgSMIMECompFields::~nsMsgSMIMECompFields()
{
/* destructor code */
}
/* attribute boolean signMessage; */
NS_IMETHODIMP nsMsgSMIMECompFields::GetSignMessage(bool *aSignMessage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMsgSMIMECompFields::SetSignMessage(bool aSignMessage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean requireEncryptMessage; */
NS_IMETHODIMP nsMsgSMIMECompFields::GetRequireEncryptMessage(bool *aRequireEncryptMessage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMsgSMIMECompFields::SetRequireEncryptMessage(bool aRequireEncryptMessage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIMsgSMIMECompFields_h__ */