25 #ifndef LIBRSS_RSS_ENCLOSURE_H
26 #define LIBRSS_RSS_ENCLOSURE_H
36 class TDE_EXPORT Enclosure
40 static Enclosure fromXML( const TQDomElement& e);
41 TQDomElement toXML(TQDomDocument document) const;
44 Enclosure( const Enclosure& other);
45 Enclosure( const TQString& url, int length, const TQString& type);
50 Enclosure& operator=( const Enclosure& other);
51 bool operator==( const Enclosure& other) const;
60 TQString type() const;
64 class EnclosurePrivate;
|