Pavel Labath | fa3fa5b | 2018-05-24 12:44:18 +0000 | [diff] [blame] | 1 | //===-- SystemInitializerLLGS.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_SYSTEMINITIALIZERLLGS_H |
| 11 | #define LLDB_SYSTEMINITIALIZERLLGS_H |
| 12 | |
| 13 | #include "lldb/Initialization/SystemInitializerCommon.h" |
| 14 | |
| 15 | class SystemInitializerLLGS : public lldb_private::SystemInitializerCommon { |
| 16 | public: |
| 17 | void Initialize() override; |
| 18 | void Terminate() override; |
| 19 | }; |
| 20 | |
| 21 | #endif // LLDB_SYSTEMINITIALIZERLLGS_H |