OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * DO NOT EDIT. THIS FILE IS GENERATED FROM c:/builds/tinderbox/XR-Mozilla1.8.0
-Release/WINNT_5.2_Depend/mozilla/dom/public/idl/events/nsIDOMEventGroup.idl |
| 3 */ |
| 4 |
| 5 #ifndef __gen_nsIDOMEventGroup_h__ |
| 6 #define __gen_nsIDOMEventGroup_h__ |
| 7 |
| 8 |
| 9 #ifndef __gen_domstubs_h__ |
| 10 #include "domstubs.h" |
| 11 #endif |
| 12 |
| 13 /* For IDL files that don't want to include root IDL files. */ |
| 14 #ifndef NS_NO_VTABLE |
| 15 #define NS_NO_VTABLE |
| 16 #endif |
| 17 |
| 18 /* starting interface: nsIDOMEventGroup */ |
| 19 #define NS_IDOMEVENTGROUP_IID_STR "33347bee-6620-4841-8152-36091ae80c7e" |
| 20 |
| 21 #define NS_IDOMEVENTGROUP_IID \ |
| 22 {0x33347bee, 0x6620, 0x4841, \ |
| 23 { 0x81, 0x52, 0x36, 0x09, 0x1a, 0xe8, 0x0c, 0x7e }} |
| 24 |
| 25 class NS_NO_VTABLE nsIDOMEventGroup : public nsISupports { |
| 26 public: |
| 27 |
| 28 NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMEVENTGROUP_IID) |
| 29 |
| 30 /** |
| 31 * The nsIDOMEventTarget interface is the interface implemented by all |
| 32 * event targets in the Document Object Model. |
| 33 * |
| 34 * For more information on this interface please see |
| 35 * http://www.w3.org/TR/DOM-Level-3-Events/ |
| 36 */ |
| 37 /* boolean isSameEventGroup (in nsIDOMEventGroup other); */ |
| 38 NS_IMETHOD IsSameEventGroup(nsIDOMEventGroup *other, PRBool *_retval) = 0; |
| 39 |
| 40 }; |
| 41 |
| 42 /* Use this macro when declaring classes that implement this interface. */ |
| 43 #define NS_DECL_NSIDOMEVENTGROUP \ |
| 44 NS_IMETHOD IsSameEventGroup(nsIDOMEventGroup *other, PRBool *_retval); |
| 45 |
| 46 /* Use this macro to declare functions that forward the behavior of this interfa
ce to another object. */ |
| 47 #define NS_FORWARD_NSIDOMEVENTGROUP(_to) \ |
| 48 NS_IMETHOD IsSameEventGroup(nsIDOMEventGroup *other, PRBool *_retval) { return
_to IsSameEventGroup(other, _retval); } |
| 49 |
| 50 /* Use this macro to declare functions that forward the behavior of this interfa
ce to another object in a safe way. */ |
| 51 #define NS_FORWARD_SAFE_NSIDOMEVENTGROUP(_to) \ |
| 52 NS_IMETHOD IsSameEventGroup(nsIDOMEventGroup *other, PRBool *_retval) { return
!_to ? NS_ERROR_NULL_POINTER : _to->IsSameEventGroup(other, _retval); } |
| 53 |
| 54 #if 0 |
| 55 /* Use the code below as a template for the implementation class for this interf
ace. */ |
| 56 |
| 57 /* Header file */ |
| 58 class nsDOMEventGroup : public nsIDOMEventGroup |
| 59 { |
| 60 public: |
| 61 NS_DECL_ISUPPORTS |
| 62 NS_DECL_NSIDOMEVENTGROUP |
| 63 |
| 64 nsDOMEventGroup(); |
| 65 |
| 66 private: |
| 67 ~nsDOMEventGroup(); |
| 68 |
| 69 protected: |
| 70 /* additional members */ |
| 71 }; |
| 72 |
| 73 /* Implementation file */ |
| 74 NS_IMPL_ISUPPORTS1(nsDOMEventGroup, nsIDOMEventGroup) |
| 75 |
| 76 nsDOMEventGroup::nsDOMEventGroup() |
| 77 { |
| 78 /* member initializers and constructor code */ |
| 79 } |
| 80 |
| 81 nsDOMEventGroup::~nsDOMEventGroup() |
| 82 { |
| 83 /* destructor code */ |
| 84 } |
| 85 |
| 86 /* boolean isSameEventGroup (in nsIDOMEventGroup other); */ |
| 87 NS_IMETHODIMP nsDOMEventGroup::IsSameEventGroup(nsIDOMEventGroup *other, PRBool
*_retval) |
| 88 { |
| 89 return NS_ERROR_NOT_IMPLEMENTED; |
| 90 } |
| 91 |
| 92 /* End of implementation class template. */ |
| 93 #endif |
| 94 |
| 95 |
| 96 #endif /* __gen_nsIDOMEventGroup_h__ */ |
OLD | NEW |