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