Zachary Turner | 888a428 | 2017-12-01 00:52:51 +0000 | [diff] [blame] | 1 | //===-- SystemInitializerTest.h ---------------------------------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Zachary Turner | 888a428 | 2017-12-01 00:52:51 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLDB_API_SYSTEM_INITIALIZER_TEST_H |
| 10 | #define LLDB_API_SYSTEM_INITIALIZER_TEST_H |
| 11 | |
| 12 | #include "lldb/Initialization/SystemInitializerCommon.h" |
| 13 | |
| 14 | namespace lldb_private { |
| 15 | //------------------------------------------------------------------ |
| 16 | /// Initializes lldb. |
| 17 | /// |
| 18 | /// This class is responsible for initializing all of lldb system |
| 19 | /// services needed to use the full LLDB application. This class is |
| 20 | /// not intended to be used externally, but is instead used |
| 21 | /// internally by SBDebugger to initialize the system. |
| 22 | //------------------------------------------------------------------ |
| 23 | class SystemInitializerTest : public SystemInitializerCommon { |
| 24 | public: |
| 25 | SystemInitializerTest(); |
| 26 | ~SystemInitializerTest() override; |
| 27 | |
Jonas Devlieghere | 15eacd7 | 2018-12-03 17:28:29 +0000 | [diff] [blame] | 28 | llvm::Error Initialize(const InitializerOptions &options) override; |
Zachary Turner | 888a428 | 2017-12-01 00:52:51 +0000 | [diff] [blame] | 29 | void Terminate() override; |
| 30 | }; |
| 31 | |
| 32 | } // namespace lldb_private |
| 33 | |
| 34 | #endif // LLDB_API_SYSTEM_INITIALIZER_FULL_H |