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
330 B
21 lines
330 B
15 years ago
|
#ifndef DUMMYMETA_H
|
||
|
#define DUMMYMETA_H
|
||
|
|
||
12 years ago
|
#include <tdefilemetainfo.h>
|
||
15 years ago
|
|
||
|
class KFileMetaInfo;
|
||
|
|
||
|
class DummyMeta : public KFilePlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
14 years ago
|
DummyMeta( TQObject *parent, const char *name, const TQStringList &args );
|
||
15 years ago
|
~DummyMeta() {}
|
||
|
|
||
|
virtual bool readInfo( KFileMetaInfo::Internal& info );
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|