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.
|
|
|
%{H_TEMPLATE}
|
|
|
|
|
|
|
|
#ifndef __TDEFILE_%{APPNAMEUC}_H__
|
|
|
|
#define __TDEFILE_%{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 // __TDEFILE_%{APPNAMEUC}_H__
|
|
|
|
|