nsIDOMHTMLFieldSetElement.h
上传用户:goldcmy89
上传日期:2017-12-03
资源大小:2246k
文件大小:3k
源码类别:

PlugIns编程

开发平台:

Visual C++

  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/html/nsIDOMHTMLFieldSetElement.idl
  3.  */
  4. #ifndef __gen_nsIDOMHTMLFieldSetElement_h__
  5. #define __gen_nsIDOMHTMLFieldSetElement_h__
  6. #ifndef __gen_nsIDOMHTMLElement_h__
  7. #include "nsIDOMHTMLElement.h"
  8. #endif
  9. /* For IDL files that don't want to include root IDL files. */
  10. #ifndef NS_NO_VTABLE
  11. #define NS_NO_VTABLE
  12. #endif
  13. /* starting interface:    nsIDOMHTMLFieldSetElement */
  14. #define NS_IDOMHTMLFIELDSETELEMENT_IID_STR "a6cf9097-15b3-11d2-932e-00805f8add32"
  15. #define NS_IDOMHTMLFIELDSETELEMENT_IID 
  16.   {0xa6cf9097, 0x15b3, 0x11d2, 
  17.     { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
  18. /**
  19.  * The nsIDOMHTMLFieldSetElement interface is the interface to a
  20.  * [X]HTML fieldset element.
  21.  *
  22.  * For more information on this interface please see
  23.  * http://www.w3.org/TR/DOM-Level-2-HTML/
  24.  *
  25.  * @status FROZEN
  26.  */
  27. class NS_NO_VTABLE nsIDOMHTMLFieldSetElement : public nsIDOMHTMLElement {
  28.  public: 
  29.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLFIELDSETELEMENT_IID)
  30.   /* readonly attribute nsIDOMHTMLFormElement form; */
  31.   NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) = 0;
  32. };
  33. /* Use this macro when declaring classes that implement this interface. */
  34. #define NS_DECL_NSIDOMHTMLFIELDSETELEMENT 
  35.   NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm); 
  36. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  37. #define NS_FORWARD_NSIDOMHTMLFIELDSETELEMENT(_to) 
  38.   NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) { return _to GetForm(aForm); } 
  39. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  40. #define NS_FORWARD_SAFE_NSIDOMHTMLFIELDSETELEMENT(_to) 
  41.   NS_IMETHOD GetForm(nsIDOMHTMLFormElement * *aForm) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetForm(aForm); } 
  42. #if 0
  43. /* Use the code below as a template for the implementation class for this interface. */
  44. /* Header file */
  45. class nsDOMHTMLFieldSetElement : public nsIDOMHTMLFieldSetElement
  46. {
  47. public:
  48.   NS_DECL_ISUPPORTS
  49.   NS_DECL_NSIDOMHTMLFIELDSETELEMENT
  50.   nsDOMHTMLFieldSetElement();
  51. private:
  52.   ~nsDOMHTMLFieldSetElement();
  53. protected:
  54.   /* additional members */
  55. };
  56. /* Implementation file */
  57. NS_IMPL_ISUPPORTS1(nsDOMHTMLFieldSetElement, nsIDOMHTMLFieldSetElement)
  58. nsDOMHTMLFieldSetElement::nsDOMHTMLFieldSetElement()
  59. {
  60.   /* member initializers and constructor code */
  61. }
  62. nsDOMHTMLFieldSetElement::~nsDOMHTMLFieldSetElement()
  63. {
  64.   /* destructor code */
  65. }
  66. /* readonly attribute nsIDOMHTMLFormElement form; */
  67. NS_IMETHODIMP nsDOMHTMLFieldSetElement::GetForm(nsIDOMHTMLFormElement * *aForm)
  68. {
  69.     return NS_ERROR_NOT_IMPLEMENTED;
  70. }
  71. /* End of implementation class template. */
  72. #endif
  73. #endif /* __gen_nsIDOMHTMLFieldSetElement_h__ */