nsIDOMHTMLHtmlElement.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/nsIDOMHTMLHtmlElement.idl
  3.  */
  4. #ifndef __gen_nsIDOMHTMLHtmlElement_h__
  5. #define __gen_nsIDOMHTMLHtmlElement_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:    nsIDOMHTMLHtmlElement */
  14. #define NS_IDOMHTMLHTMLELEMENT_IID_STR "a6cf9086-15b3-11d2-932e-00805f8add32"
  15. #define NS_IDOMHTMLHTMLELEMENT_IID 
  16.   {0xa6cf9086, 0x15b3, 0x11d2, 
  17.     { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
  18. /**
  19.  * The nsIDOMHTMLHtmlElement interface is the interface to a [X]HTML
  20.  * html 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 nsIDOMHTMLHtmlElement : public nsIDOMHTMLElement {
  28.  public: 
  29.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLHTMLELEMENT_IID)
  30.   /* attribute DOMString version; */
  31.   NS_IMETHOD GetVersion(nsAString & aVersion) = 0;
  32.   NS_IMETHOD SetVersion(const nsAString & aVersion) = 0;
  33. };
  34. /* Use this macro when declaring classes that implement this interface. */
  35. #define NS_DECL_NSIDOMHTMLHTMLELEMENT 
  36.   NS_IMETHOD GetVersion(nsAString & aVersion); 
  37.   NS_IMETHOD SetVersion(const nsAString & aVersion); 
  38. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  39. #define NS_FORWARD_NSIDOMHTMLHTMLELEMENT(_to) 
  40.   NS_IMETHOD GetVersion(nsAString & aVersion) { return _to GetVersion(aVersion); } 
  41.   NS_IMETHOD SetVersion(const nsAString & aVersion) { return _to SetVersion(aVersion); } 
  42. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  43. #define NS_FORWARD_SAFE_NSIDOMHTMLHTMLELEMENT(_to) 
  44.   NS_IMETHOD GetVersion(nsAString & aVersion) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetVersion(aVersion); } 
  45.   NS_IMETHOD SetVersion(const nsAString & aVersion) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetVersion(aVersion); } 
  46. #if 0
  47. /* Use the code below as a template for the implementation class for this interface. */
  48. /* Header file */
  49. class nsDOMHTMLHtmlElement : public nsIDOMHTMLHtmlElement
  50. {
  51. public:
  52.   NS_DECL_ISUPPORTS
  53.   NS_DECL_NSIDOMHTMLHTMLELEMENT
  54.   nsDOMHTMLHtmlElement();
  55. private:
  56.   ~nsDOMHTMLHtmlElement();
  57. protected:
  58.   /* additional members */
  59. };
  60. /* Implementation file */
  61. NS_IMPL_ISUPPORTS1(nsDOMHTMLHtmlElement, nsIDOMHTMLHtmlElement)
  62. nsDOMHTMLHtmlElement::nsDOMHTMLHtmlElement()
  63. {
  64.   /* member initializers and constructor code */
  65. }
  66. nsDOMHTMLHtmlElement::~nsDOMHTMLHtmlElement()
  67. {
  68.   /* destructor code */
  69. }
  70. /* attribute DOMString version; */
  71. NS_IMETHODIMP nsDOMHTMLHtmlElement::GetVersion(nsAString & aVersion)
  72. {
  73.     return NS_ERROR_NOT_IMPLEMENTED;
  74. }
  75. NS_IMETHODIMP nsDOMHTMLHtmlElement::SetVersion(const nsAString & aVersion)
  76. {
  77.     return NS_ERROR_NOT_IMPLEMENTED;
  78. }
  79. /* End of implementation class template. */
  80. #endif
  81. #endif /* __gen_nsIDOMHTMLHtmlElement_h__ */