You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
328 B
21 lines
328 B
#ifndef DUMMYMETA_H
|
|
#define DUMMYMETA_H
|
|
|
|
#include <kfilemetainfo.h>
|
|
|
|
class KFileMetaInfo;
|
|
|
|
class DummyMeta : public KFilePlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DummyMeta( TQObject *parent, const char *name, const TQStringList &args );
|
|
~DummyMeta() {}
|
|
|
|
virtual bool readInfo( KFileMetaInfo::Internal& info );
|
|
|
|
};
|
|
|
|
#endif
|