summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/debuggerconstants.h
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-03-22 10:28:49 +0100
committerhjk <hjk121@nokiamail.com>2013-03-22 10:31:44 +0100
commit6f549a228dfab6550f4611c9cb48bfe98933e445 (patch)
treeaf22daf204afb71528ea3bd3188722a68888f272 /src/plugins/debugger/debuggerconstants.h
parent85d12bb4095c88ef476f4cf106411278cb218a44 (diff)
downloadqt-creator-6f549a228dfab6550f4611c9cb48bfe98933e445.tar.gz
Debugger: Introduce a debugger engine talking to lldb command line
Change-Id: Ie6b9cb68045db12cff1bbb06a7049529fc39c21f Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/debugger/debuggerconstants.h')
-rw-r--r--src/plugins/debugger/debuggerconstants.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/plugins/debugger/debuggerconstants.h b/src/plugins/debugger/debuggerconstants.h
index b6fd23663b..35619cad37 100644
--- a/src/plugins/debugger/debuggerconstants.h
+++ b/src/plugins/debugger/debuggerconstants.h
@@ -195,19 +195,21 @@ enum LogChannel
enum DebuggerEngineType
{
NoEngineType = 0,
- GdbEngineType = 0x01,
- ScriptEngineType = 0x02,
- CdbEngineType = 0x04,
- PdbEngineType = 0x08,
- QmlEngineType = 0x20,
- QmlCppEngineType = 0x40,
- LldbEngineType = 0x80,
+ GdbEngineType = 0x001,
+ ScriptEngineType = 0x002,
+ CdbEngineType = 0x004,
+ PdbEngineType = 0x008,
+ QmlEngineType = 0x020,
+ QmlCppEngineType = 0x040,
+ LldbLibEngineType = 0x080,
+ LldbEngineType = 0x100,
AllEngineTypes = GdbEngineType
| ScriptEngineType
| CdbEngineType
| PdbEngineType
| QmlEngineType
| QmlCppEngineType
+ | LldbLibEngineType
| LldbEngineType
};