~ubuntu-branches/ubuntu/utopic/kdevplatform/utopic-proposed

« back to all changes in this revision

Viewing changes to debugger/breakpoint/breakpoint.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-08-30 03:52:11 UTC
  • mfrom: (0.3.26)
  • Revision ID: package-import@ubuntu.com-20140830035211-wndqlc843eu2v8nk
Tags: 1.7.0-0ubuntu1
* New upstream release
* Add XS-Testsuite: autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
protected:
116
116
    friend class IBreakpointController;
117
117
    
 
118
    /**
 
119
     * Return the model this breakpoint is attached to
 
120
     *
 
121
     * @note This might be null, e.g. after the breakpoint has been marked as deleted
 
122
     */
118
123
    BreakpointModel *breakpointModel();
119
124
 
120
125
    BreakpointModel *m_model;
121
 
    bool enabled_;
122
 
    bool deleted_;
123
 
    BreakpointKind kind_;
 
126
    bool m_enabled;
 
127
    bool m_deleted;
 
128
    BreakpointKind m_kind;
124
129
    /* For watchpoints, the address it is set at.  */
125
 
    QString address_;
 
130
    QString m_address;
126
131
    KUrl m_url;
127
132
    int m_line;
128
133
    QString m_condition;
130
135
    int m_ignoreHits;
131
136
    QString m_expression;
132
137
 
133
 
    static const char *string_kinds[LastBreakpointKind];
134
 
 
135
138
    void reportChange(Column c);
136
139
};
137
140