blob: 76a0f8d253f92067b0a330213ae8c696430f60de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/***************************************************************************
* Copyright (C) 2004 by Sashmit Bhaduri *
* [email protected] *
* *
* 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:
|