123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- #ifndef __gen_nsIDOMEventGroup_h__
- #define __gen_nsIDOMEventGroup_h__
- #ifndef __gen_domstubs_h__
- #include "domstubs.h"
- #endif
- #ifndef NS_NO_VTABLE
- #define NS_NO_VTABLE
- #endif
- #define NS_IDOMEVENTGROUP_IID_STR "33347bee-6620-4841-8152-36091ae80c7e"
- #define NS_IDOMEVENTGROUP_IID \
- {0x33347bee, 0x6620, 0x4841, \
- { 0x81, 0x52, 0x36, 0x09, 0x1a, 0xe8, 0x0c, 0x7e }}
- class NS_NO_VTABLE nsIDOMEventGroup : public nsISupports {
- public:
- NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMEVENTGROUP_IID)
-
-
- NS_IMETHOD IsSameEventGroup(nsIDOMEventGroup *other, PRBool *_retval) = 0;
- };
- #define NS_DECL_NSIDOMEVENTGROUP \
- NS_IMETHOD IsSameEventGroup(nsIDOMEventGroup *other, PRBool *_retval);
- #define NS_FORWARD_NSIDOMEVENTGROUP(_to) \
- NS_IMETHOD IsSameEventGroup(nsIDOMEventGroup *other, PRBool *_retval) { return _to IsSameEventGroup(other, _retval); }
- #define NS_FORWARD_SAFE_NSIDOMEVENTGROUP(_to) \
- NS_IMETHOD IsSameEventGroup(nsIDOMEventGroup *other, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsSameEventGroup(other, _retval); }
- #if 0
- class nsDOMEventGroup : public nsIDOMEventGroup
- {
- public:
- NS_DECL_ISUPPORTS
- NS_DECL_NSIDOMEVENTGROUP
- nsDOMEventGroup();
- private:
- ~nsDOMEventGroup();
- protected:
-
- };
- NS_IMPL_ISUPPORTS1(nsDOMEventGroup, nsIDOMEventGroup)
- nsDOMEventGroup::nsDOMEventGroup()
- {
-
- }
- nsDOMEventGroup::~nsDOMEventGroup()
- {
-
- }
- NS_IMETHODIMP nsDOMEventGroup::IsSameEventGroup(nsIDOMEventGroup *other, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
- #endif
- #endif
|