1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- #ifndef __gen_nsIDOMDocumentRange_h__
- #define __gen_nsIDOMDocumentRange_h__
- #ifndef __gen_domstubs_h__
- #include "domstubs.h"
- #endif
- #ifndef NS_NO_VTABLE
- #define NS_NO_VTABLE
- #endif
- #define NS_IDOMDOCUMENTRANGE_IID_STR "7b9badc6-c9bc-447a-8670-dbd195aed24b"
- #define NS_IDOMDOCUMENTRANGE_IID \
- {0x7b9badc6, 0xc9bc, 0x447a, \
- { 0x86, 0x70, 0xdb, 0xd1, 0x95, 0xae, 0xd2, 0x4b }}
- class NS_NO_VTABLE nsIDOMDocumentRange : public nsISupports {
- public:
- NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMDOCUMENTRANGE_IID)
-
- NS_IMETHOD CreateRange(nsIDOMRange **_retval) = 0;
- };
- #define NS_DECL_NSIDOMDOCUMENTRANGE \
- NS_IMETHOD CreateRange(nsIDOMRange **_retval);
- #define NS_FORWARD_NSIDOMDOCUMENTRANGE(_to) \
- NS_IMETHOD CreateRange(nsIDOMRange **_retval) { return _to CreateRange(_retval); }
- #define NS_FORWARD_SAFE_NSIDOMDOCUMENTRANGE(_to) \
- NS_IMETHOD CreateRange(nsIDOMRange **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateRange(_retval); }
- #if 0
- class nsDOMDocumentRange : public nsIDOMDocumentRange
- {
- public:
- NS_DECL_ISUPPORTS
- NS_DECL_NSIDOMDOCUMENTRANGE
- nsDOMDocumentRange();
- private:
- ~nsDOMDocumentRange();
- protected:
-
- };
- NS_IMPL_ISUPPORTS1(nsDOMDocumentRange, nsIDOMDocumentRange)
- nsDOMDocumentRange::nsDOMDocumentRange()
- {
-
- }
- nsDOMDocumentRange::~nsDOMDocumentRange()
- {
-
- }
- NS_IMETHODIMP nsDOMDocumentRange::CreateRange(nsIDOMRange **_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
- #endif
- #endif
|