~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/plugins/debugger/gdb/coregdbadapter.h

  • Committer: Timo Jyrinki
  • Date: 2013-11-15 12:25:23 UTC
  • mfrom: (1.1.28)
  • Revision ID: timo.jyrinki@canonical.com-20131115122523-i2kyamsu4gs2mu1m
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#define DEBUGGER_COREGDBADAPTER_H
32
32
 
33
33
#include "gdbengine.h"
34
 
#include "localgdbprocess.h"
35
34
 
36
35
#include <QFile>
37
36
 
61
60
    void interruptInferior();
62
61
    void shutdownEngine();
63
62
 
64
 
    AbstractGdbProcess *gdbProc() { return &m_gdbProc; }
65
 
 
66
63
    void handleFileExecAndSymbols(const GdbResponse &response);
67
64
    void handleTargetCore(const GdbResponse &response);
68
65
    void handleRoundTrip(const GdbResponse &response);
78
75
private:
79
76
    QString m_executable;
80
77
    QString m_coreName;
81
 
    LocalGdbProcess m_gdbProc;
82
78
    QString m_tempCoreName;
83
79
    QProcess *m_coreUnpackProcess;
84
80
    QFile m_tempCoreFile;