~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to debuggers/gdb/selectcoredialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * GDB Debugger Support
 
3
 *
 
4
 * Copyright 2009 Niko Sams <niko.sams@gmail.com>
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as
 
8
 * published by the Free Software Foundation; either version 2 of the
 
9
 * License, or (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public
 
17
 * License along with this program; if not, write to the
 
18
 * Free Software Foundation, Inc.,
 
19
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
20
 */
 
21
 
 
22
#ifndef SELECTCOREDIALOG_H
 
23
#define SELECTCOREDIALOG_H
 
24
 
 
25
#include <KDialog>
 
26
#include "ui_selectcore.h"
 
27
 
 
28
namespace GDBDebugger {
 
29
 
 
30
class SelectCoreDialog : public KDialog
 
31
{
 
32
public:
 
33
    SelectCoreDialog(QWidget *parent = 0);
 
34
    KUrl binary() const;
 
35
    KUrl core() const;
 
36
 
 
37
private:
 
38
    Ui::SelectCore m_ui;
 
39
};
 
40
 
 
41
}
 
42
 
 
43
#endif