add docu to GdbCommandFlag values

This commit is contained in:
Oswald Buddenhagen
2009-10-12 12:05:35 +02:00
parent a1a8f6adcb
commit 68c2156f6f

View File

@@ -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)