|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21571/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/js/ductwork/debugger/IJSDebugger.idl
*/
#ifndef __gen_IJSDebugger_h__
#define __gen_IJSDebugger_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#include "jspubtd.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: IJSDebugger */
#define IJSDEBUGGER_IID_STR "a36fa816-31da-4b23-bc97-6412771f0867"
#define IJSDEBUGGER_IID \
{0xa36fa816, 0x31da, 0x4b23, \
{ 0xbc, 0x97, 0x64, 0x12, 0x77, 0x1f, 0x08, 0x67 }}
class NS_NO_VTABLE IJSDebugger : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(IJSDEBUGGER_IID)
/* [implicit_jscontext] void addClass (in jsval global); */
NS_IMETHOD AddClass(const JS::Value & global, JSContext* cx) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(IJSDebugger, IJSDEBUGGER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_IJSDEBUGGER \
NS_IMETHOD AddClass(const JS::Value & global, JSContext* cx);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_IJSDEBUGGER(_to) \
NS_IMETHOD AddClass(const JS::Value & global, JSContext* cx) { return _to AddClass(global, cx); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_IJSDEBUGGER(_to) \
NS_IMETHOD AddClass(const JS::Value & global, JSContext* cx) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddClass(global, cx); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public IJSDebugger
{
public:
NS_DECL_ISUPPORTS
NS_DECL_IJSDEBUGGER
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(_MYCLASS_, IJSDebugger)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* [implicit_jscontext] void addClass (in jsval global); */
NS_IMETHODIMP _MYCLASS_::AddClass(const JS::Value & global, JSContext* cx)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_IJSDebugger_h__ */