Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDOMGeoPositionCallback.idl
*/
#ifndef __gen_nsIDOMGeoPositionCallback_h__
#define __gen_nsIDOMGeoPositionCallback_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMGeoPosition; /* forward declaration */
/* starting interface: nsIDOMGeoPositionCallback */
#define NS_IDOMGEOPOSITIONCALLBACK_IID_STR "527e8b53-6f29-4b6a-8d04-5c1666a4c4c1"
#define NS_IDOMGEOPOSITIONCALLBACK_IID \
{0x527e8b53, 0x6f29, 0x4b6a, \
{ 0x8d, 0x04, 0x5c, 0x16, 0x66, 0xa4, 0xc4, 0xc1 }}
class NS_NO_VTABLE nsIDOMGeoPositionCallback : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMGEOPOSITIONCALLBACK_IID)
/* void handleEvent (in nsIDOMGeoPosition position); */
NS_IMETHOD HandleEvent(nsIDOMGeoPosition *position) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMGeoPositionCallback, NS_IDOMGEOPOSITIONCALLBACK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMGEOPOSITIONCALLBACK \
NS_IMETHOD HandleEvent(nsIDOMGeoPosition *position) 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_NSIDOMGEOPOSITIONCALLBACK \
NS_METHOD HandleEvent(nsIDOMGeoPosition *position);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMGEOPOSITIONCALLBACK(_to) \
NS_IMETHOD HandleEvent(nsIDOMGeoPosition *position) override { return _to HandleEvent(position); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMGEOPOSITIONCALLBACK(_to) \
NS_IMETHOD HandleEvent(nsIDOMGeoPosition *position) override { return !_to ? NS_ERROR_NULL_POINTER : _to->HandleEvent(position); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMGeoPositionCallback : public nsIDOMGeoPositionCallback
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMGEOPOSITIONCALLBACK
nsDOMGeoPositionCallback();
private:
~nsDOMGeoPositionCallback();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDOMGeoPositionCallback, nsIDOMGeoPositionCallback)
nsDOMGeoPositionCallback::nsDOMGeoPositionCallback()
{
/* member initializers and constructor code */
}
nsDOMGeoPositionCallback::~nsDOMGeoPositionCallback()
{
/* destructor code */
}
/* void handleEvent (in nsIDOMGeoPosition position); */
NS_IMETHODIMP nsDOMGeoPositionCallback::HandleEvent(nsIDOMGeoPosition *position)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMGeoPositionCallback_h__ */