Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsICommandLineRunner.idl
*/
#ifndef __gen_nsICommandLineRunner_h__
#define __gen_nsICommandLineRunner_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsICommandLine_h__
#include "nsICommandLine.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: nsICommandLineRunner */
#define NS_ICOMMANDLINERUNNER_IID_STR "c9f2996c-b25a-4d3d-821f-4cd0c4bc8afb"
#define NS_ICOMMANDLINERUNNER_IID \
{0xc9f2996c, 0xb25a, 0x4d3d, \
{ 0x82, 0x1f, 0x4c, 0xd0, 0xc4, 0xbc, 0x8a, 0xfb }}
class NS_NO_VTABLE nsICommandLineRunner : public nsICommandLine {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICOMMANDLINERUNNER_IID)
/* void init (in long argc, in nsArgvArray argv, in nsIFile workingDir, in unsigned long state); */
NS_IMETHOD Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state) = 0;
/* void setWindowContext (in nsIDOMWindow aWindow); */
NS_IMETHOD SetWindowContext(nsIDOMWindow *aWindow) = 0;
/* void run (); */
NS_IMETHOD Run(void) = 0;
/* readonly attribute AUTF8String helpText; */
NS_IMETHOD GetHelpText(nsACString & aHelpText) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsICommandLineRunner, NS_ICOMMANDLINERUNNER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICOMMANDLINERUNNER \
NS_IMETHOD Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state) override; \
NS_IMETHOD SetWindowContext(nsIDOMWindow *aWindow) override; \
NS_IMETHOD Run(void) override; \
NS_IMETHOD GetHelpText(nsACString & aHelpText) 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_NSICOMMANDLINERUNNER \
NS_METHOD Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state); \
NS_METHOD SetWindowContext(nsIDOMWindow *aWindow); \
NS_METHOD Run(void); \
NS_METHOD GetHelpText(nsACString & aHelpText);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICOMMANDLINERUNNER(_to) \
NS_IMETHOD Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state) override { return _to Init(argc, argv, workingDir, state); } \
NS_IMETHOD SetWindowContext(nsIDOMWindow *aWindow) override { return _to SetWindowContext(aWindow); } \
NS_IMETHOD Run(void) override { return _to Run(); } \
NS_IMETHOD GetHelpText(nsACString & aHelpText) override { return _to GetHelpText(aHelpText); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICOMMANDLINERUNNER(_to) \
NS_IMETHOD Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(argc, argv, workingDir, state); } \
NS_IMETHOD SetWindowContext(nsIDOMWindow *aWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWindowContext(aWindow); } \
NS_IMETHOD Run(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Run(); } \
NS_IMETHOD GetHelpText(nsACString & aHelpText) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHelpText(aHelpText); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsCommandLineRunner : public nsICommandLineRunner
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICOMMANDLINERUNNER
nsCommandLineRunner();
private:
~nsCommandLineRunner();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsCommandLineRunner, nsICommandLineRunner)
nsCommandLineRunner::nsCommandLineRunner()
{
/* member initializers and constructor code */
}
nsCommandLineRunner::~nsCommandLineRunner()
{
/* destructor code */
}
/* void init (in long argc, in nsArgvArray argv, in nsIFile workingDir, in unsigned long state); */
NS_IMETHODIMP nsCommandLineRunner::Init(int32_t argc, const char* const *argv, nsIFile *workingDir, uint32_t state)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setWindowContext (in nsIDOMWindow aWindow); */
NS_IMETHODIMP nsCommandLineRunner::SetWindowContext(nsIDOMWindow *aWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void run (); */
NS_IMETHODIMP nsCommandLineRunner::Run()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AUTF8String helpText; */
NS_IMETHODIMP nsCommandLineRunner::GetHelpText(nsACString & aHelpText)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsICommandLineRunner_h__ */