Path: blob/main/contrib/llvm-project/lldb/tools/lldb-server/SystemInitializerLLGS.h
34879 views
//===-- SystemInitializerLLGS.h ---------------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLDB_TOOLS_LLDB_SERVER_SYSTEMINITIALIZERLLGS_H9#define LLDB_TOOLS_LLDB_SERVER_SYSTEMINITIALIZERLLGS_H1011#include "lldb/Initialization/SystemInitializer.h"12#include "lldb/Initialization/SystemInitializerCommon.h"1314class SystemInitializerLLGS : public lldb_private::SystemInitializerCommon {15public:16SystemInitializerLLGS() : SystemInitializerCommon(nullptr) {}1718llvm::Error Initialize() override;19void Terminate() override;20};2122#endif // LLDB_TOOLS_LLDB_SERVER_SYSTEMINITIALIZERLLGS_H232425