00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef CHANNELIOZAPPING_H
00024 #define CHANNELIOZAPPING_H
00025
00026 #include <qdom.h>
00027
00028 #include "channelio.h"
00029
00037 class ChannelIOFormatZapping : public ChannelIOFormat
00038 {
00039 public:
00040 ChannelIOFormatZapping();
00041 virtual ~ChannelIOFormatZapping() {}
00042
00043 virtual bool load( ChannelStore *store, QIODevice *file, const char *fmt );
00044 virtual ChannelFileMetaInfo getMetaInfo( QIODevice *file, const char *fmt );
00045
00046 bool handlesFile( const QString& filename, int rflags) const;
00047
00048 protected:
00049 bool readDocument( ChannelStore *store, const QDomDocument& doc);
00050
00054 static QDomNode FindSubtree(const QDomNode& node, const QString& name);
00055 };
00056
00057 #endif // CHANNELIOZAPPING_H