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 "nsIFeedElementBase.idl" michael@0: 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(0fecd56b-bd92-481b-a486-b8d489cdd385)] michael@0: interface nsIFeedGenerator : nsIFeedElementBase michael@0: { michael@0: /** michael@0: * The name of the software. michael@0: */ michael@0: attribute AString agent; michael@0: michael@0: /** michael@0: * The version of the software. michael@0: */ michael@0: attribute AString version; michael@0: michael@0: /** michael@0: * A URI associated with the software. michael@0: */ michael@0: attribute nsIURI uri; michael@0: };