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.
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 Sandy Meier <smeier@kdevelop.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __KDEVPART_VISUALBOYADVANCE_H__
|
|
|
|
#define __KDEVPART_VISUALBOYADVANCE_H__
|
|
|
|
|
|
|
|
#include <tqguardedptr.h>
|
|
|
|
#include <kdevplugin.h>
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
|
|
|
|
namespace VisualBoyAdvance {
|
|
|
|
class VisualBoyAdvancePart : public KDevPlugin
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
VisualBoyAdvancePart(TQObject *parent, const char *name, const TQStringList &);
|
|
|
|
~VisualBoyAdvancePart();
|
|
|
|
private slots:
|
|
|
|
void slotExecute();
|
|
|
|
void projectConfigWidget(KDialogBase *dlg);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|