summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kfileplugin/kfile_plugin.h
blob: 933033594e0a9ff4e740e732f299163ef7982d4b (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 *tqparent, const char *name, const TQStringList& args );
    
    virtual bool readInfo( KFileMetaInfo& info, uint what);
};

#endif // __KFILE_%{APPNAMEUC}_H__