summaryrefslogtreecommitdiffstats
path: root/kio/tests/dummymeta.h
blob: 053c48ecb3b3dfe0295bda0277540401038a23f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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