summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/core/kmfcompilerinterface.h
blob: 734ec2c4cc3384971e49e0d6c076dd06b14f75af (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
42
43
44
45
46
47
48
49
50
//
// C++ Interface: kmfcompilerinterface
//
// Description: 
//
//
// Author: Christian Hubinger <chubinger@irrsinnig.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KMFCOMPILERINTERFACE_H
#define KMFCOMPILERINTERFACE_H

/**
@author Christian Hubinger
*/

// QT includes
#include <tqstring.h>
#include <tqobject.h>

// KDE Includes
#include <tdeparts/plugin.h>


namespace KMF {
class KMFDoc;
class KMFGenericDoc;
class KMFIPTDoc;





class KDE_EXPORT KMFCompilerInterface {
public:
//    KMFCompilerInterface( TQObject* parent , const char* name  ) : KParts::Plugin( parent , name ) {};
	KMFCompilerInterface();
	virtual ~KMFCompilerInterface();
	virtual void compile() = 0;
	virtual const TQString& compile( KMFGenericDoc* ) = 0;
	virtual const TQString& compile( KMFIPTDoc* );
	virtual const TQString& osName() = 0;
	virtual const TQString& osGUIName() = 0;
	virtual const TQString& backendName() = 0;
	virtual const TQString& backendGUIName() = 0;
};
}
#endif