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.
kmyfirewall/kmyfirewall/core/kmfcompilerinterface.h

51 lines
1016 B

//
// 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
*/
// TQt 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