24 lines · c
1//===-- SystemInitializerLLGS.h ---------------------------------*- C++ -*-===//2//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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_TOOLS_LLDB_SERVER_SYSTEMINITIALIZERLLGS_H10#define LLDB_TOOLS_LLDB_SERVER_SYSTEMINITIALIZERLLGS_H11 12#include "lldb/Initialization/SystemInitializer.h"13#include "lldb/Initialization/SystemInitializerCommon.h"14 15class SystemInitializerLLGS : public lldb_private::SystemInitializerCommon {16public:17 SystemInitializerLLGS() : SystemInitializerCommon(nullptr) {}18 19 llvm::Error Initialize() override;20 void Terminate() override;21};22 23#endif // LLDB_TOOLS_LLDB_SERVER_SYSTEMINITIALIZERLLGS_H24