blob: 86b662b7e164dadaacb226cb0c9d8e882517dd48 (
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
|
/***************************************************************************
* 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
{
TQ_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
|