Zachary Turner | 888a428 | 2017-12-01 00:52:51 +0000 | [diff] [blame^] | 1 | //===-- SystemInitializerTest.h ---------------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef LLDB_API_SYSTEM_INITIALIZER_TEST_H |
| 11 | #define LLDB_API_SYSTEM_INITIALIZER_TEST_H |
| 12 | |
| 13 | #include "lldb/Initialization/SystemInitializerCommon.h" |
| 14 | |
| 15 | namespace lldb_private { |
| 16 | //------------------------------------------------------------------ |
| 17 | /// Initializes lldb. |
| 18 | /// |
| 19 | /// This class is responsible for initializing all of lldb system |
| 20 | /// services needed to use the full LLDB application. This class is |
| 21 | /// not intended to be used externally, but is instead used |
| 22 | /// internally by SBDebugger to initialize the system. |
| 23 | //------------------------------------------------------------------ |
| 24 | class SystemInitializerTest : public SystemInitializerCommon { |
| 25 | public: |
| 26 | SystemInitializerTest(); |
| 27 | ~SystemInitializerTest() override; |
| 28 | |
| 29 | void Initialize() override; |
| 30 | void Terminate() override; |
| 31 | }; |
| 32 | |
| 33 | } // namespace lldb_private |
| 34 | |
| 35 | #endif // LLDB_API_SYSTEM_INITIALIZER_FULL_H |