summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kfileplugin/kfile_plugin.h
blob: f2ed740805e19a01c9a7f52d96f895c73fa71ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
%{H_TEMPLATE}

#ifndef __KFILE_%{APPNAMEUC}_H__
#define __KFILE_%{APPNAMEUC}_H__

/**
 * Note: For further information look into <$KDEDIR/include/kfilemetainfo.h>
 */
#include <kfilemetainfo.h>

class TQStringList;

class %{APPNAME}Plugin: public KFilePlugin
{
    Q_OBJECT
  TQ_OBJECT
    
public:
    %{APPNAME}Plugin( TQObject *parent, const char *name, const TQStringList& args );
    
    virtual bool readInfo( KFileMetaInfo& info, uint what);
};

#endif // __KFILE_%{APPNAMEUC}_H__