2018-05-24 20:44:18 +08:00
|
|
|
//===-- SystemInitializerLLGS.h ---------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-05-24 20:44:18 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLDB_SYSTEMINITIALIZERLLGS_H
|
|
|
|
#define LLDB_SYSTEMINITIALIZERLLGS_H
|
|
|
|
|
2018-12-04 01:28:29 +08:00
|
|
|
#include "lldb/Initialization/SystemInitializer.h"
|
2018-05-24 20:44:18 +08:00
|
|
|
#include "lldb/Initialization/SystemInitializerCommon.h"
|
|
|
|
|
|
|
|
class SystemInitializerLLGS : public lldb_private::SystemInitializerCommon {
|
|
|
|
public:
|
2019-02-22 06:26:16 +08:00
|
|
|
llvm::Error Initialize() override;
|
2018-05-24 20:44:18 +08:00
|
|
|
void Terminate() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LLDB_SYSTEMINITIALIZERLLGS_H
|