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
450 B
25 lines
450 B
/*
|
|
* Copyright (C) 2003 Dominik Seichter <domseichter@web.de>
|
|
*/
|
|
|
|
#ifndef _PLUGIN_KBARCODEFILEPLUGIN_H_
|
|
#define _PLUGIN_KBARCODEFILEPLUGIN_H_
|
|
|
|
#include <tdefilemetainfo.h>
|
|
|
|
class TQStringList;
|
|
|
|
class KBarcodePlugin: public KFilePlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
KBarcodePlugin( TQObject *parent, const char *name, const TQStringList& args );
|
|
|
|
virtual bool readInfo( KFileMetaInfo& info, uint );
|
|
};
|
|
|
|
|
|
#endif // _PLUGIN_KBARCODEFILEPLUGIN_H_
|