michael@0: /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: interface nsISAXAttributes; michael@0: interface nsIURI; michael@0: michael@0: /** michael@0: * An nsIFeedGenerator represents the software used to create a feed. michael@0: */ michael@0: [scriptable, uuid(5215291e-fa0a-40c2-8ce7-e86cd1a1d3fa)] michael@0: interface nsIFeedElementBase : nsISupports michael@0: { michael@0: /** michael@0: * The attributes found on the element. Most interfaces provide convenience michael@0: * accessors for their standard fields, so this useful only when looking for michael@0: * an extension. michael@0: */ michael@0: attribute nsISAXAttributes attributes; michael@0: michael@0: /** michael@0: * The baseURI for the Entry or Feed. michael@0: */ michael@0: attribute nsIURI baseURI; michael@0: };