mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
21 lines
326 B
C
21 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
|