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.
tdevelop/languages/cpp/app_templates/tdefileplugin/tdefile_plugin.h

26 lines
492 B

%{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
{
TQ_OBJECT
public:
%{APPNAME}Plugin( TQObject *parent, const char *name, const TQStringList& args );
virtual bool readInfo( KFileMetaInfo& info, uint what);
};
#endif // __TDEFILE_%{APPNAMEUC}_H__