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.
klamav/src/klamav_run.h

42 lines
1010 B

/***************************************************************************
* Copyright (C) 2004 by Sashmit Bhaduri *
* smt@vfemail.net *
* *
* Licensed under GPL. *
***************************************************************************/
#ifndef KLAMAV_RUN_H
#define KLAMAV_RUN_H
#include <tdeparts/browserrun.h>
namespace KlamAV
{
class Viewer;
class BrowserRun : public KParts::BrowserRun
{
Q_OBJECT
public:
BrowserRun(Viewer *, TQWidget *, KParts::ReadOnlyPart *, const KURL & , const KParts::URLArgs &);
virtual ~BrowserRun();
protected:
virtual void foundMimeType( const TQString & _type );
private slots:
void killMyself();
private:
Viewer *m_viewer;
};
}
#endif
// vim: set et ts=4 sts=4 sw=4: