~ubuntu-branches/ubuntu/quantal/kdepimlibs/quantal-proposed

« back to all changes in this revision

Viewing changes to syndication/item.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-14 14:37:07 UTC
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: package-import@ubuntu.com-20111214143707-m0qplh3hsd957ukv
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#ifndef SYNDICATION_ITEM_H
24
24
#define SYNDICATION_ITEM_H
25
25
 
26
 
#include <QString>
 
26
#include <QtCore/QString>
27
27
#include <boost/shared_ptr.hpp>
28
28
 
29
29
#include "ksyndication_export.h"
48
48
class SpecificItem;
49
49
typedef boost::shared_ptr<SpecificItem> SpecificItemPtr;
50
50
//@endcond
51
 
    
 
51
 
52
52
/**
53
53
 * An item from a news feed.
54
54
 *
210
210
 
211
211
        /**
212
212
         * returns a list of item metadata not covered by this class.
213
 
         * Can be used e.g. to access format extensions. 
214
 
         * 
 
213
         * Can be used e.g. to access format extensions.
 
214
         *
215
215
         * The returned map contains key value pairs, where the key
216
216
         * is the tag name of the element, namespace prefix are resolved
217
217
         * to the corresponding URIs. The value is the XML element as read
218
218
         * from the document.
219
 
         * 
 
219
         *
220
220
         * For example, to access the &lt;itunes:keywords> element, use
221
221
         * additionalProperties()["http://www.itunes.com/dtds/podcast-1.0.dtdkeywords"].
222
 
         * 
 
222
         *
223
223
         * Currently this is only
224
 
         * supported for RSS 0.91..0.94/2.0 and Atom formats, but not for RDF 
 
224
         * supported for RSS 0.91..0.94/2.0 and Atom formats, but not for RDF
225
225
         * (RSS 0.9 and 1.0).
226
226
         */
227
227
        virtual QMultiMap<QString, QDomElement> additionalProperties() const = 0;
228
 
        
 
228
 
229
229
        /**
230
230
         * returns a description of the item for debugging purposes
231
231
         *