Copy as Markdown

Other Tools

/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/xpcom/ds/nsISerializable.idl
*/
#ifndef __gen_nsISerializable_h__
#define __gen_nsISerializable_h__
#include "nsISupports.h"
#include "js/GCAnnotations.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIObjectInputStream; /* forward declaration */
class nsIObjectOutputStream; /* forward declaration */
/* starting interface: nsISerializable */
#define NS_ISERIALIZABLE_IID_STR "91cca981-c26d-44a8-bebe-d9ed4891503a"
#define NS_ISERIALIZABLE_IID \
{0x91cca981, 0xc26d, 0x44a8, \
{ 0xbe, 0xbe, 0xd9, 0xed, 0x48, 0x91, 0x50, 0x3a }}
class NS_NO_VTABLE nsISerializable : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISERIALIZABLE_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsISerializable;
/* [must_use] void read (in nsIObjectInputStream aInputStream); */
JS_HAZ_CAN_RUN_SCRIPT [[nodiscard]] NS_IMETHOD Read(nsIObjectInputStream *aInputStream) = 0;
/* void write (in nsIObjectOutputStream aOutputStream); */
JS_HAZ_CAN_RUN_SCRIPT NS_IMETHOD Write(nsIObjectOutputStream *aOutputStream) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsISerializable, NS_ISERIALIZABLE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISERIALIZABLE \
[[nodiscard]] NS_IMETHOD Read(nsIObjectInputStream *aInputStream) override; \
NS_IMETHOD Write(nsIObjectOutputStream *aOutputStream) 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_NSISERIALIZABLE \
[[nodiscard]] nsresult Read(nsIObjectInputStream *aInputStream); \
nsresult Write(nsIObjectOutputStream *aOutputStream);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISERIALIZABLE(_to) \
[[nodiscard]] NS_IMETHOD Read(nsIObjectInputStream *aInputStream) override { return _to Read(aInputStream); } \
NS_IMETHOD Write(nsIObjectOutputStream *aOutputStream) override { return _to Write(aOutputStream); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISERIALIZABLE(_to) \
[[nodiscard]] NS_IMETHOD Read(nsIObjectInputStream *aInputStream) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Read(aInputStream); } \
NS_IMETHOD Write(nsIObjectOutputStream *aOutputStream) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Write(aOutputStream); }
#endif /* __gen_nsISerializable_h__ */