You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
475 B
25 lines
475 B
%{H_TEMPLATE}
|
|
|
|
#ifndef __KFILE_%{APPNAMEUC}_H__
|
|
#define __KFILE_%{APPNAMEUC}_H__
|
|
|
|
/**
|
|
* Note: For further information look into <$KDEDIR/include/kfilemetainfo.h>
|
|
*/
|
|
#include <kfilemetainfo.h>
|
|
|
|
class QStringList;
|
|
|
|
class %{APPNAME}Plugin: public KFilePlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
%{APPNAME}Plugin( QObject *parent, const char *name, const QStringList& args );
|
|
|
|
virtual bool readInfo( KFileMetaInfo& info, uint what);
|
|
};
|
|
|
|
#endif // __KFILE_%{APPNAMEUC}_H__
|
|
|