mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
20 lines
326 B
C++
20 lines
326 B
C++
#ifndef DUMMYMETA_H
|
|
#define DUMMYMETA_H
|
|
|
|
#include <kfilemetainfo.h>
|
|
|
|
class KFileMetaInfo;
|
|
|
|
class DummyMeta : public KFilePlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DummyMeta( QObject *parent, const char *name, const QStringList &args );
|
|
~DummyMeta() {}
|
|
|
|
virtual bool readInfo( KFileMetaInfo::Internal& info );
|
|
|
|
};
|
|
|
|
#endif
|