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

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/nsIDOMHTMLModElement.idl
  3.  */
  4. #ifndef __gen_nsIDOMHTMLModElement_h__
  5. #define __gen_nsIDOMHTMLModElement_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:    nsIDOMHTMLModElement */
  14. #define NS_IDOMHTMLMODELEMENT_IID_STR "a6cf90a9-15b3-11d2-932e-00805f8add32"
  15. #define NS_IDOMHTMLMODELEMENT_IID 
  16.   {0xa6cf90a9, 0x15b3, 0x11d2, 
  17.     { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
  18. /**
  19.  * The nsIDOMHTMLModElement interface is the interface to a [X]HTML
  20.  * ins and del 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 nsIDOMHTMLModElement : public nsIDOMHTMLElement {
  28.  public: 
  29.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLMODELEMENT_IID)
  30.   /* attribute DOMString cite; */
  31.   NS_IMETHOD GetCite(nsAString & aCite) = 0;
  32.   NS_IMETHOD SetCite(const nsAString & aCite) = 0;
  33.   /* attribute DOMString dateTime; */
  34.   NS_IMETHOD GetDateTime(nsAString & aDateTime) = 0;
  35.   NS_IMETHOD SetDateTime(const nsAString & aDateTime) = 0;
  36. };
  37. /* Use this macro when declaring classes that implement this interface. */
  38. #define NS_DECL_NSIDOMHTMLMODELEMENT 
  39.   NS_IMETHOD GetCite(nsAString & aCite); 
  40.   NS_IMETHOD SetCite(const nsAString & aCite); 
  41.   NS_IMETHOD GetDateTime(nsAString & aDateTime); 
  42.   NS_IMETHOD SetDateTime(const nsAString & aDateTime); 
  43. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  44. #define NS_FORWARD_NSIDOMHTMLMODELEMENT(_to) 
  45.   NS_IMETHOD GetCite(nsAString & aCite) { return _to GetCite(aCite); } 
  46.   NS_IMETHOD SetCite(const nsAString & aCite) { return _to SetCite(aCite); } 
  47.   NS_IMETHOD GetDateTime(nsAString & aDateTime) { return _to GetDateTime(aDateTime); } 
  48.   NS_IMETHOD SetDateTime(const nsAString & aDateTime) { return _to SetDateTime(aDateTime); } 
  49. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  50. #define NS_FORWARD_SAFE_NSIDOMHTMLMODELEMENT(_to) 
  51.   NS_IMETHOD GetCite(nsAString & aCite) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCite(aCite); } 
  52.   NS_IMETHOD SetCite(const nsAString & aCite) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCite(aCite); } 
  53.   NS_IMETHOD GetDateTime(nsAString & aDateTime) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDateTime(aDateTime); } 
  54.   NS_IMETHOD SetDateTime(const nsAString & aDateTime) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDateTime(aDateTime); } 
  55. #if 0
  56. /* Use the code below as a template for the implementation class for this interface. */
  57. /* Header file */
  58. class nsDOMHTMLModElement : public nsIDOMHTMLModElement
  59. {
  60. public:
  61.   NS_DECL_ISUPPORTS
  62.   NS_DECL_NSIDOMHTMLMODELEMENT
  63.   nsDOMHTMLModElement();
  64. private:
  65.   ~nsDOMHTMLModElement();
  66. protected:
  67.   /* additional members */
  68. };
  69. /* Implementation file */
  70. NS_IMPL_ISUPPORTS1(nsDOMHTMLModElement, nsIDOMHTMLModElement)
  71. nsDOMHTMLModElement::nsDOMHTMLModElement()
  72. {
  73.   /* member initializers and constructor code */
  74. }
  75. nsDOMHTMLModElement::~nsDOMHTMLModElement()
  76. {
  77.   /* destructor code */
  78. }
  79. /* attribute DOMString cite; */
  80. NS_IMETHODIMP nsDOMHTMLModElement::GetCite(nsAString & aCite)
  81. {
  82.     return NS_ERROR_NOT_IMPLEMENTED;
  83. }
  84. NS_IMETHODIMP nsDOMHTMLModElement::SetCite(const nsAString & aCite)
  85. {
  86.     return NS_ERROR_NOT_IMPLEMENTED;
  87. }
  88. /* attribute DOMString dateTime; */
  89. NS_IMETHODIMP nsDOMHTMLModElement::GetDateTime(nsAString & aDateTime)
  90. {
  91.     return NS_ERROR_NOT_IMPLEMENTED;
  92. }
  93. NS_IMETHODIMP nsDOMHTMLModElement::SetDateTime(const nsAString & aDateTime)
  94. {
  95.     return NS_ERROR_NOT_IMPLEMENTED;
  96. }
  97. /* End of implementation class template. */
  98. #endif
  99. #endif /* __gen_nsIDOMHTMLModElement_h__ */