forked from qt-creator/qt-creator
add docu to GdbCommandFlag values
This commit is contained in:
@@ -172,12 +172,12 @@ private:
|
|||||||
public: // otherwise the Qt flag macros are unhappy
|
public: // otherwise the Qt flag macros are unhappy
|
||||||
enum GdbCommandFlag {
|
enum GdbCommandFlag {
|
||||||
NoFlags = 0,
|
NoFlags = 0,
|
||||||
NeedsStop = 1,
|
NeedsStop = 1, // The command needs a stopped inferior
|
||||||
Discardable = 2,
|
Discardable = 2, // No need to wait for the reply before continuing inferior
|
||||||
RebuildModel = 4,
|
RebuildModel = 4, // Trigger model rebuild when no such commands are pending any more
|
||||||
WatchUpdate = Discardable | RebuildModel,
|
WatchUpdate = Discardable | RebuildModel,
|
||||||
EmbedToken = 8,
|
EmbedToken = 8, // Expand %1 in the command to the command token
|
||||||
RunRequest = 16
|
RunRequest = 16 // Callback expect GdbResultRunning instead of GdbResultDone
|
||||||
};
|
};
|
||||||
Q_DECLARE_FLAGS(GdbCommandFlags, GdbCommandFlag)
|
Q_DECLARE_FLAGS(GdbCommandFlags, GdbCommandFlag)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user