languages/cpp/debugger/debuggerconfigwidget.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 1999-2001 by John Birch * 00003 * jbb@kdevelop.org * 00004 * Copyright (C) 2001 by Bernd Gehrmann * 00005 * bernd@kdevelop.org * 00006 * * 00007 * This program is free software; you can redistribute it and/or modify * 00008 * it under the terms of the GNU General Public License as published by * 00009 * the Free Software Foundation; either version 2 of the License, or * 00010 * (at your option) any later version. * 00011 * * 00012 ***************************************************************************/ 00013 00014 #ifndef _DEBUGGERCONFIGWIDGET_H_ 00015 #define _DEBUGGERCONFIGWIDGET_H_ 00016 00017 #include "debuggerconfigwidgetbase.h" 00018 00019 #include <qdom.h> 00020 00021 namespace GDBDebugger 00022 { 00023 00024 class DebuggerPart; 00025 00026 class DebuggerConfigWidget : public DebuggerConfigWidgetBase 00027 { 00028 Q_OBJECT 00029 00030 public: 00031 DebuggerConfigWidget( DebuggerPart* part, QWidget *parent=0, const char *name=0 ); 00032 ~DebuggerConfigWidget(); 00033 00034 public slots: 00035 void accept(); 00036 00037 private: 00038 QDomDocument &dom; 00039 }; 00040 00041 } 00042 00043 #endif