blob: 887d6243765da2f5801435486a324c940bde67e7 [file] [log] [blame]
Zachary Turner888a4282017-12-01 00:52:51 +00001//===-- 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
15namespace 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//------------------------------------------------------------------
24class SystemInitializerTest : public SystemInitializerCommon {
25public:
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