]> git.tdb.fi Git - libs/core.git/blob - source/debug/debugapi.h
Add move semantics to Variant
[libs/core.git] / source / debug / debugapi.h
1 #ifndef MSP_DEBUG_DEBUGAPI_H_
2 #define MSP_DEBUG_DEBUGAPI_H_
3
4 #include <msp/core/mspcore_api.h>
5
6 namespace Msp {
7 namespace Debug {
8
9 enum DebuggerType
10 {
11         NONE,
12         GDB,
13         UNKNOWN,
14 };
15
16 MSPCORE_API DebuggerType check_debugger(bool = false);
17 MSPCORE_API void debug_break();
18
19 } // namespace Debug
20 } // namespace Msp
21
22 #endif