summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/tdefileplugin/tdefile_plugin.h
blob: 96fcaf0dcf22f4df0a83276e42b14b64b67e3a7f (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 <$TDEDIR/include/tdefilemetainfo.h>
 */
#include <tdefilemetainfo.h>

class TQStringList;

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

#endif // __KFILE_%{APPNAMEUC}_H__