summaryrefslogtreecommitdiffstats
path: root/tdeio/tests/dummymeta.h
blob: 20c9fec54cd900f11d111886d3dbac8a017996f8 (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 <tdefilemetainfo.h>

class KFileMetaInfo;

class DummyMeta : public KFilePlugin
{
    TQ_OBJECT
    
public:
    DummyMeta( TQObject *parent, const char *name, const TQStringList &args );
    ~DummyMeta() {}

    virtual bool readInfo( KFileMetaInfo::Internal& info );

};

#endif